summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-02-09 15:42:19 +0000
committerMatthew Lemon <y@yulqen.org>2024-02-09 15:42:19 +0000
commitb0c6298dacdd83b7ba9f512dcd8207f85c7fe3ee (patch)
treedf808fc77c115a8462f7de7f875661874489c6ec /Makefile
parentfc37ba24c45874e4fe1b5568f96887e5563547e0 (diff)
Adds a populate.sql script
We need a script to run for populating and bootstrapping the database. This is the start of such a script. The syntax here is suitable for mariadb at present. The comments above "populate" are assumed to have been carried out by the root user (e.g. sudo mariabdb).
Diffstat (limited to '')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 46c7d5c..ec80b91 100644
--- a/Makefile
+++ b/Makefile
@@ -6,3 +6,8 @@ build:
stop:
@docker stop ded-core
+
+# assume GRANT SELECT, INDEX, CREATE, INSERT, UPDATE, DROP, DELETE ON ded.* TO 'web'@'localhost';
+# assume CREATE DATABASE ded CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
+populate:
+ mariadb -u web ded -p < populate.sql