https://github.com/itgoyo/code_with_cj_curd
Please watch this to details: https://www.youtube.com/watch?v=fBNz5xF-Kx4
https://github.com/itgoyo/code_with_cj_curd
Last synced: 3 months ago
JSON representation
Please watch this to details: https://www.youtube.com/watch?v=fBNz5xF-Kx4
- Host: GitHub
- URL: https://github.com/itgoyo/code_with_cj_curd
- Owner: itgoyo
- Created: 2020-05-10T11:02:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T17:16:36.000Z (over 2 years ago)
- Last Synced: 2025-01-08T08:41:44.429Z (5 months ago)
- Language: JavaScript
- Size: 1.48 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build a Full Stack App: CRUD todo
We'll be using:
* postgres for our database
* knex.js for our database migrations, seeds and queries.
* express.js for our routes and rendering
* handlebars.js for our server side view templates
* boostrap for our UI## Full Stack Check List
* [x] Generate Express App
* [x] Create database/table
* [x] Seed table with sample data
* [x] List all records with GET /todo
* [x] Add Bootstrap
* [x] Show new form with /todo/new
* [x] Create a record with POST /todo
* [x] Show one record with GET /todo/:id
* [x] Show an edit form with GET /todo/:id/edit
* [x] Update a record with PUT /todo/:id
* [x] Delete a record with DELETE /todo/:id
* [x] Redirect on create / update / delete