βοΈHow to initialize project
In this part, it is documented how to initialize the project.
Build Setup
# Go to paste
$ cd backend
# Create your .env file using .env.example as an example
# Create your api_key
$ node ace generate:key
# install dependencies
$ npm install
# Create database structure
$ node ace migration:run
# Create account admin and character sample
$ node ace db:seed
# server with changes watcher
$ npm run dev
# build for production and launch server
$ npm run build
$ npm run startCreate your .env file


Install dependencies using NPM
Create database structure
Run project DEV
Build for production and launch server
Last updated