Graduation project at HTP (it-academy). Crocodile (charades) game - server side
# clone repo
git clone https://github.com/kulikmaxim/crocodile-game-server-final-project.git
# go to directory
cd crocodile-game-server-final-project
# install dependencies
npm install
# run app
npm run start
Deployment (Heroku)
heroku create
git add .
git commit -m "Start with app"
git push heroku master
heroku open
'|-- app',
' |-- .eslintrc.js',
' |-- .gitignore',
' |-- index.js',
' |-- package.json',
' |-- README.md',
' |-- server',
' | |-- Server.js',
' |-- utils',
' |-- EventBus.js',
' |-- Game.js',
' |-- wordGenerator.js',
''