/games_app

Online gaming portal for playing tic tac toe. Made with Ruby on Rails, HTML 5, CSS3

Primary LanguageRuby

Games App

Online gaming portal for playing tic tac toe. Made with Ruby on Rails, HTML 5, CSS3

Live site

http://games.louiechristie.com

Setup Locally

Clone the repo

rake db:setup

Restore a Postgres database backup (if you have a one)

pg_restore --verbose --clean --no-acl --no-owner -h localhost -U <username> -d games_app_development latest.dump

Run

bin/rails server

Setup on Heroku

heroku run rake db:setup --app <app-name>
heroku run rake db:migrate --app <app-name>