Skip to content

Latest commit

 

History

History
47 lines (32 loc) · 559 Bytes

CONTRIBUTING.md

File metadata and controls

47 lines (32 loc) · 559 Bytes

Contributing

Run the project

Run the Docker container

./scripts/dev/start-mysql

Install dependencies

yarn

Go to the app folder

cd app

Provide the environment variables

  • Ask maintainers for credentials
  • Copy .env.sample to .env
  • Fill the variables

Import the database

# Create the schemas
yarn migrate
# Import the data
yarn seed

Run the app

yarn start # only the first time
yarn dev

Deploy the app

Each commit to master deploys the application.