gdmen / mathgame_2

0 stars 0 forks source link

installation

config

install mysql

set a mysql user/pass

mysql -u root -p # check path

USE mysql;

ALTER USER 'root'@'localhost' IDENTIFIED BY '';

CREATE DATABASE mathgame;

refresh after not developing for a long time

make clean
make

development

make dev-api make dev-web

production

see ./deploy/README.md

insert some test videos

mysql -u root -proot mathgame < deploy/videos.sql

drop and recreate db

mysql -u root -proot mathgame < deploy/drop.sql