Go to file
Adrian Stephens cecf84a67d in test2 2026-04-02 09:16:25 +01:00
node_modules initial commit 2026-04-02 08:00:47 +01:00
public initial commit 2026-04-02 08:00:47 +01:00
.gitignore in test2 2026-04-02 09:16:25 +01:00
README.md initial commit 2026-04-02 08:00:47 +01:00
a.tmp in test2 2026-04-02 09:16:25 +01:00
db.js initial commit 2026-04-02 08:00:47 +01:00
package.json initial commit 2026-04-02 08:00:47 +01:00
recipes.db initial commit 2026-04-02 08:00:47 +01:00
requirements.md initial commit 2026-04-02 08:00:47 +01:00
server.js initial commit 2026-04-02 08:00:47 +01:00

README.md

Recipe App

Simple web app to manage recipes with ingredients and cooking instructions.

Features

  • Add recipes from a browser form
  • View all saved recipes
  • Persist data in SQLite (recipes.db)

Run

npm install
npm start

Then open http://localhost:3000.

Data Model

Table: recipes

  • id (integer, primary key)
  • name (text)
  • ingredients (text; newline-separated)
  • instructions (text)
  • created_at (timestamp)