Skip to content

SC-Market/sc-market-backend

Repository files navigation

SC Market Backend

This repository hosts the backend for SC Market.

Local Development

Please use the .env.template file to create a local .env file.

Database

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

Backend Server

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