This repository hosts the backend for SC Market.
Please use the .env.template file to create a local .env
file.
The database can be spun up using docker-compose using the default credentials in the env template. Using docker-compose will require also cloning SCMarketBot in an adjacent directory.
docker-compose up -d postgres
This project uses yarn to manage dependencies. You can install dependencies using the yarn
command.
yarn install
Running the project is simple and can be done with
yarn dev
You can ensure your changes build with
yarn build