aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoelHMikael <joel.h.kronqvist@gmail.com>2022-01-07 10:58:02 +0200
committerJoelHMikael <joel.h.kronqvist@gmail.com>2022-01-07 10:58:02 +0200
commit4e5fe4711fe46a6af740aadbf23bde86bb5acf69 (patch)
treea6c11bbdda6d6f42848961b19c365db0c91cb4b8 /README.md
parente7b4d365f287f173c8cc0b5a4d965c3a0579c2e0 (diff)
downloadLYLLRuoka-4e5fe4711fe46a6af740aadbf23bde86bb5acf69.tar.gz
LYLLRuoka-4e5fe4711fe46a6af740aadbf23bde86bb5acf69.zip
Added the DB class & instructions to set up DB
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index f118d5f..7c60f52 100644
--- a/README.md
+++ b/README.md
@@ -2,4 +2,11 @@
Readme coming soon!
## Setup
-If you want to set up the server, you will have to get a SSL certificate or generate one yourself. If you want to run a dedicated server that can update, you also need to add the cron jobs from crontab\_add.
+If you want to set up the server, you will have to get a SSL certificate or generate one yourself. If you want to run a dedicated server that can update, you also need to add the cron jobs from crontab\_add. You must create a MySQL DB and give its login info in ../dblogin.txt. The database should have the following tables set up:
+
+CREATE TABLE devs (
+ id INT PRIMARY KEY AUTO_INCREMENT,
+ name VARCHAR(30) NOT NULL,
+ description VARCHAR(128),
+ contact VARCHAR(40)
+);