Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 595 Bytes

File metadata and controls

44 lines (28 loc) · 595 Bytes

madamis

How To Develop

0 Prepare Node

use mise

mise install

1 Install Dependencies

pnpm i
  • If asked to download pnpm, do so.

2 Prepare DB

To prepare the database, run the migrations

pnpm migrate

There is no data in the Users table, so add it (Data can be freely entered)

pnpx wrangler d1 execute madamis-db --local --command "INSERT INTO Users (name, color) VALUES ('User1', '#1b7a16'), ('User2', '#bd8317');"

3 Run App

To run the App, run this command

pnpm dev

Then, you can access the App in your browser