/server

サーバー側ソースコード

Primary LanguageTypeScript

メンバー向け

最初のステップ

  1. env ファイル等が必要なので、その辺りを要求してください。

    • ルートに.envfilesディレクトリを作ってその中にもらったdefault.env,development.env, production.envを置きます。
  2. 以下のコマンドを実行します

docker compose up -d

# どちらでもいいが、別のターミナルで起動しておくことをおすすめする
# contaienr_idはdocker psから確認する
docker logs {container_id} -f
  • ここでlocalhost:3000/lafにアクセスして{"items": []}が返って来れば正常に動作しています。
  • またlocalhost:3000/documentで API の仕様が確認できます
  1. データベースへ仮データを投入
docker compose exec database /bin/sh
mysql -u user -p
# ここでパスワードを入力(default.envのDB_PASSWORD)

# ログインできたら以下のコマンドも叩きます
use app;
source /sql/user.sql
source /sql/laf.sql
  • ここでもう一度localhost:3000/lafにアクセスすると今度は空配列ではなくちゃんとしたデータが返ってくると思います。(API が実装されていれば)
  • 2 回目以降はdocker compose up -dのみで構いません

テスト

docker compose exec server /bin/sh

# docker compose up -d の直後だと error が出る場合あり
yarn run test

Nest Logo

A progressive Node.js framework for building efficient and scalable server-side applications.

NPM Version Package License NPM Downloads CircleCI Coverage Discord Backers on Open Collective Sponsors on Open Collective Support us

Description

Nest framework TypeScript starter repository.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov

Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please read more here.

Stay in touch

License

Nest is MIT licensed.