Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithmike01/coffee-udacity
https://github.com/codewithmike01/coffee-udacity
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/codewithmike01/coffee-udacity
- Owner: codewithmike01
- License: other
- Created: 2022-09-18T15:40:30.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-24T14:06:55.000Z (about 2 years ago)
- Last Synced: 2024-08-20T16:43:22.248Z (3 months ago)
- Language: TypeScript
- Size: 587 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Coffee Shop Full Stack
## Full Stack Nano - IAM Final Project
Udacity has decided to open a new digitally enabled cafe for students to order drinks, socialize, and study hard. But they need help setting up their menu experience.
You have been called on to demonstrate your newly learned skills to create a full stack drink menu application. The application must:
1. Display graphics representing the ratios of ingredients in each drink.
2. Allow public users to view drink names and graphics.
3. Allow the shop baristas to see the recipe information.
4. Allow the shop managers to create new drinks and edit existing drinks.## Tasks
There are `@TODO` comments throughout the project. We recommend tackling the sections in order. Start by reading the READMEs in:
1. [`./backend/`](./backend/README.md)
2. [`./frontend/`](./frontend/README.md)## About the Stack
We started the full stack application for you. It is designed with some key functional areas:
### Backend
The `./backend` directory contains a partially completed Flask server with a pre-written SQLAlchemy module to simplify your data needs. You will need to complete the required endpoints, configure, and integrate Auth0 for authentication.
[View the README.md within ./backend for more details.](./backend/README.md)
### Frontend
The `./frontend` directory contains a complete Ionic frontend to consume the data from the Flask server. You will only need to update the environment variables found within (./frontend/src/environment/environment.ts) to reflect the Auth0 configuration details set up for the backend app.
[View the README.md within ./frontend for more details.](./frontend/README.md)