🖥️Quick Start
Tutorial page for a quick start
If you want to run the project 100% in docker quickly, just run the following commands in the root of the project:
# Create containers, the backend(api) will open on port 3333 while the frontend(web_app) will be on port 3000
$ docker-compose up --build
# go to paste
$ cd backend
# Create your .env file using .env.example as an example
# Install Dependencies
$ npm install
# Create database structure
$ node ace migration:run
$ node ace db:seed
Last updated