summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README5
1 files changed, 4 insertions, 1 deletions
diff --git a/README b/README
index fdd141a..8081e65 100644
--- a/README
+++ b/README
@@ -78,7 +78,10 @@ but you need to modify a few things.
* Create user
`sqlite3 shop.db "INSERT INTO users (id, email, firstname, lastname) VALUES (1, 'test@tester', 'Firstname', 'Lastname');"`
* Setup user password
- `mdbus2 -s io.mainframe.shopsystem.Database /io/mainframe/shopsystem/database io.mainframe.shopsystem.Database.SetUserPassword 1 "password"`
+ `mdbus2 -s io.mainframe.shopsystem.Database /io/mainframe/shopsystem/database io.mainframe.shopsystem.Database.SetUserPassword 1 "password"`
+ * Demo Data
+ `sqlite3 shop.db "INSERT INTO categories (name) VALUES ('Getränke')";`
+ `sqlite3 shop.db "INSERT INTO supplier (name,city,postal_code,street,phone,website) VALUES ('Demo Lieferant','Musterstadt','12345','Musterstraße 5','+49 1234 56789','https://www.ktt.de');"`
== Customize Your Shop ==