- Development API: localhost:13000/docs 수집된 데이터 목록
- ADMIN SERVER: http://203.241.228.50:13000/admin
- 임채성 | @puleugo
- Node.js 16 (with Yarn)
- Nest.js 9
Copy example environment variables.
$ cp .env.example .env
Change values below accordingly.
# Application
APP_URL=localhost:13000
APP_PORT=13000
APP_SECRET=xxxxxxxxxx
# Database
DB_HOST=xxxxxxxxxx
DB_PORT=15432
DB_DATABASE=xxxxxxxxxx
DB_USERNAME=xxxxxxxxxx
DB_PASSWORD=xxxxxxxxxx
This project uses yarn as a package manager.
$ yarn
You can start development server with this command.
$ yarn start:dev
The migrations will run automatically when the server is started. When it doesn't work, you can migrate manually with this command.
$ yarn migration:run
$ yarn migration:generate src/migrations/{migration_name}
create_users_table
add_social_vendor_id_to_users_table
drop_password_from_users_table