各種ローカルで用意するもの。
- npm (v6.14.4)か yarn(v1.22.10)
- node(v14.1.0)
1, git clone
2, npm install
3, npm run dev
※ npm install -g npmしとくと良いかも。
で http://localhost:3002から確認できます。
touch `.env.local`
Set each variable on .env.local
:(RDS の環境変数は salck にて)
MYSQL_HOST
- Your MySQL host URL.MYSQL_DATABASE
- The name of the MySQL database you want to use.MYSQL_USERNAME
- The name of the MySQL user with access to database.MYSQL_PASSWORD
- The passowrd of the MySQL user.MYSQL_PORT
- xxxx
You'll need to run a migration to create the necessary table for the example.
npm run migrate
# or
yarn migrate
ctrl + cでサーバーを一旦落として
npm install
npm run dev
# or
yarn install
yarn dev
Your app should be up and running on http://localhost:3002!
github に push することで自動的に vercel で preview 環境と production 環境が用意されます。