Files
project-inter-server/README.md
2025-03-27 08:46:53 -07:00

20 lines
477 B
Markdown

# Interchange Server
This is the server codebase for Interchange, an app for college transit.
## Setup
You'll need Docker + Compose installed to run this project.
Clone this repository and run one of the following:
```bash
# run the standard Node development server and Redis
$ docker compose run dev
# run with unit/server integration tests
$ docker compose run test
# run with test data suitable for app integration tests
$ docker compose run app-integration-tests
```