コード生成して欲しいです。
CRUD アプリ、
Typescript 使用したい。
バックエンド: Cloudflare Workers , D1 database
フロントエンド : Vue.js , tailwindCSS 使用したいです。
・バックエンドのみ、生成して欲しい。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; | |
import { z } from "zod"; | |
import 'dotenv/config' | |
console.log("API_URL=", process.env.API_URL); | |
const server = new McpServer({ | |
name: "mcp-2ex", | |
version: "1.0.0", | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mcpServers": { | |
"mcp-2ex": { | |
"command": "node", | |
"args": [ | |
"/path123/mcp/mcp-2ex/build/index.js" | |
], | |
"env": { | |
"API_URL": "http://localhost:8787", | |
"API_KEY": "123" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const {By, Builder, Browser} = require('selenium-webdriver'); | |
const assert = require("assert"); | |
(async function firstTest() { | |
let driver; | |
try { | |
driver = await new Builder().forBrowser(Browser.CHROME).build(); | |
await driver.get('http://localhost:5173'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rubyの公式イメージをベースにする | |
FROM ruby:3.3.2 | |
# 必要なパッケージをインストール | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs | |
# 作業ディレクトリを設定 | |
WORKDIR /myapp | |
# GemfileとGemfile.lockをコピー |
NewerOlder