You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple CRUD recipe application built with Node.js and Express.
3
+
This is a small, purposefully-imcomplete recipe app intended to be used in some Copilot workshops.
4
4
5
-
## Quick Start
5
+
- Built with Node.js, Express, Handlebars, and Sqlite.
6
+
- Scafholds a database with seed data on first launch.
7
+
- Handles the creation, listing, and editing of recipes.
8
+
9
+
Some ideas of what to add:
10
+
11
+
- A `/recipes/random` endpoint to select a random recipe.
12
+
- A way to delete recipes within the web application.
13
+
- A way to search recipes.
14
+
- Support for multiple units of measurement on recipes.
15
+
16
+
## Requirements
17
+
18
+
This project can be run in a GitHub Codespace or locally with the help of a Dev Container. If you want to run outside of these environments, set up should be the following commands in your terminal:
6
19
7
20
```bash
8
21
npm install
9
22
npm start
10
23
```
11
-
12
24
Visit `http://localhost:3000` to start managing your recipes.
13
25
14
-
## Features
26
+
## License
27
+
28
+
This project is licensed under the terms of the MIT open source license. Please refer to [MIT](https://github.com/github-samples/node-recipe-app/blob/main/LICENSE) for the full terms.
29
+
30
+
## Maintainers
15
31
16
-
- 📝 Create and edit recipes
17
-
- 📋 View all recipes
18
-
- SQLite database storage
32
+
See maintainers in the [CODEOWNERS](https://github.com/github-samples/node-recipe-app/blob/main/.github/CODEOWNERS) file.
19
33
20
-
## Tech Stack
34
+
## Support & Contributions
21
35
22
-
-**Backend**: Node.js, Express
23
-
-**Database**: SQLite3
24
-
-**Views**: Handlebars
25
-
-**Styling**: CSS
36
+
There is no support for this repositry. It will periodically be updated as the needs for workshops where it is used evolves. We do not currently accept contributions.
0 commit comments