Start using sinatra & ruby for backend

Signed-off-by: Syed Daanish <me@syedm.dev>
This commit is contained in:
2025-06-21 17:38:17 +03:00
parent 9d387eb482
commit d8fd37e757
32 changed files with 457 additions and 0 deletions

7
schema.sql Normal file
View File

@@ -0,0 +1,7 @@
CREATE TABLE Players (
email TEXT PRIMARY KEY,
username TEXT UNIQUE,
digest BLOB,
data BLOB,
code TEXT
);