7c09ac46da
The purpose of this branch is to bring this project in line with the JWT protcol that the microservice is using. For the time being, it's easier to get a stripped-down and stable build and replace the lost parts, one- by-one.
12 lines
393 B
SQL
12 lines
393 B
SQL
#TODO: move this into configure-script.js
|
|
|
|
#This file only needs to be run once, during initial development setup
|
|
#This file isnt needed for actual deployment
|
|
|
|
#Create the development database
|
|
CREATE DATABASE IF NOT EXISTS template;
|
|
USE template;
|
|
|
|
#Create the database user
|
|
CREATE USER IF NOT EXISTS 'template'@'%' IDENTIFIED BY 'pikachu';
|
|
GRANT ALL PRIVILEGES ON template.* TO 'template'@'%'; |