This is the frontend of the Cant Stand Still app. The backend is here
This is an application which aims to allow connect and visualize your strava data as trips over a time period. It will allow you to login with Strava, create "trips" that span date ranges, and view those trips as connected rides on a map, along with some stats.
Check it out here! (WIP)
- Clone the repository
- Ensure you have the node version specified in the .tool-versions file (Also, you should check out ASDF)
- Run
yarn install
- Run the nextjs server
yarn dev -p 4000
- You can change the port the server runs on, but you will need to overide the PORT variable in your .env.local file
This app just has feature specs, which can be run with cypress
To open cypress run yarn test
This server is meant to be run in tandem with the backend. By default, this application is hooked up to a testing deployment of the app, but if you want to test both repos in tandem, you should hook them up together locally.
- Create an
.env.local
file - Overide the
SERVER_HOST
variable with your locally running api server. e.g.http://localhost:3000
See CONTRIBUTING.md