Local Deployment

The build step might fail if you're using a computer with an Apple Silicon chip. In that case, we recommend you start the project using Docker deployment

  1. Run yarn to install dependencies

  2. Setup the postgres database: createdb <your_database_name>

  3. Build the project

    • Windows: yarn windows:build

    • Mac/Linux: yarn build

  4. Run migrations

    • Windows: yarn windows:migrate

    • Mac/Linux: yarn migrate

  5. Run seeders

    • Windows: yarn windows:seed

    • Mac/Linux: yarn seed

  6. After everything has been completed, to run the app, use the yarn dev command for dev environment or yarn start for production build

Last updated