This is the frontend for my disc golf API Currently a work in progress.
- Users can log in and log out
- once logged in, the users' JWT token is sent with subsequent requests
- logging out deletes the JWT from local storage
- Logged in users can:
- view a list of courses near them (using geolocation)
- table is paginated (server side)
- view details on a course
- distance and par for each hole
- start a round from the course page
- view a list of their own rounds
- view the scores for an individual round in a table
- create a new round by first selecting a course
- edit an existing round
- view a list of courses near them (using geolocation)
- Guest users are redirected to the login page
- Everything else
You will need the following things properly installed on your computer.
git clone <repository-url>
this repositorycd dg-scorecard-frontend
npm install
bower install
ember serve
- Visit your app at http://localhost:4200.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.