0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

初めに

本日はREADMEを読みながら、開発環境の構築を行いました。
備忘録としてまとめておきます。

作業内容

【DB設定など】

①gitlabからプロジェクトをクローン

git clone {指定のURL}

②Dockerのイメージ作成

docker-compose build

③Docker起動

バックグラウンド側
docker-compose up -d

または

フォアグランド側
docker-compose up 

ターミナルにログが表示されるのでエラーとか見つけやすいかも

④mysqlとの接続確認

mysql -u{ユーザー名} -p{パスワード}

⑤prismaを実行して、仮データを挿入

migrate
migrate:dev
仮データ挿入
migrate:seed

⑥ブラウサ上でDBの中身を見る

yarn prisma:studio

【JOB用】

①githubからプロジェクトをクローン

git clone {指定のURL}

②モジュールのインストール

yarn install

③ラムダの実行(最初からサンプルコード有り)

npx sls invoke local --stage dev --function sample --config serverless.yml -d '{"body": "{\"message\":\"Hello world\"}"}'

成功
スクリーンショット 2024-04-15 16.10.19.png

最後に

特に問題なくスムーズに環境構築する事ができました。
READMEは、環境構築をする上でとても重要ですね!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?