This is implementation of ramsey game, it is graph, mathematical game. Rules of game: http://pi.math.cornell.edu/~mec/2003-2004/graphtheory/ramsey/howtoplayramsey.html
It is available on heroku server: http://ramsey-game.herokuapp.com/#/
- Install frontend dependencies
cd ramsey_front
yarn install
- Install backend dependencies
cd ramsey_server
# virtual env recommended
pip install -r requirements.txt
- start the frontend server
cd ramsey_front
yarn run dev
- start backend server
./start_server
- Applications are accessible under
- front - localhost:8080
- backend - localhost:8000 -> will serve prebuild version of front on /
- checkout to the heroku branch
- build new fronted with command TODO: move it to the ci
cd ramsey_front
yarn run build
- push new version to the heroku branch