Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.48 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.48 KB

fantastic-umbrella

The YourBCABus Backend

Getting started

fantastic-umbrella requires Node.js and MongoDB to be installed.

Install the dependencies with:

npm install

Compile the TypeScript by running:

npm run build

Start the server with:

npm start

You'll need a config.json file to start the server. You can ask @anli5005 for one, or attempt to piece it together yourself.

Tip: Run tsc in watch mode and use a tool such as nodemon to automatically restart the server. Here's the commands I use to do that: - @anli5005

npm run build -- -w
nodemon -w dist -d 0.5 # in a different terminal

Contributing & Deployment

Code in the main branch should always be production-ready. Features or anything that might require a review should be committed to a different branch.

It's my intent to set up CD sometime soon. - @anli5005

Common tasks

Modifying a DB schema

  1. Update interfaces.ts.
  2. Update models.ts to reflect the updated schema.

Adding a GraphQL query/mutation

  1. Add the query/mutation to yourbcabus.graphql in the root folder.
  2. Add the corresponding resolver to resolvers.ts.

Adding to the legacy REST API

Don't.

(The legacy REST API is comprised of schools.ts, buses.ts, stops.ts, dismissal.ts, and alerts.ts. It will be replaced by the GraphQL API.)