Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (25 loc) · 771 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (25 loc) · 771 Bytes

Contributing

Fork this repo, write some code and submit a pull request into the develop branch.

Installing locally

This guide assumes you have Node, yarn and PostgreSQL already installed.

This guide also assumes you know how to create a database with Postgres!

Installing dependencies

Clone the repo. Install dependencies with:

yarn

Note: this project uses yarn, pull requests using npm or pnpm will be ignored

Then you need to run the knex migrations with:

knex migrate:latest

Running the development server

To start the development server, simply run:

yarn dev

Building for production

To generate a production build, run:

yarn build