Converted the account system to an auth system

This commit is contained in:
2021-03-07 00:41:19 +11:00
parent 725842f672
commit 2e024f71c3
27 changed files with 4495 additions and 7 deletions
+1
View File
@@ -25,5 +25,6 @@ app.get('*', (req, res) => {
//startup
server.listen(process.env.WEB_PORT || 3200, (err) => {
database.sync();
console.log(`listening to localhost:${process.env.WEB_PORT || 3200}`);
});