-
Notifications
You must be signed in to change notification settings - Fork 11
Setting Up EventX on Local Server
Morolake Orekoya edited this page Aug 25, 2016
·
1 revision
- Make sure ruby is installed on your system. To check your ruby version, use
ruby -v
- Setup SSH. Follow this guide -> https://help.github.com/articles/generating-an-ssh-key/
- Open your terminal and clone the EventX repo.
git clone [email protected]:andela/eventx.git
- Install bundler
gem install bundler
- Navigate to the eventx directory
cd eventx
- Run the bundler
bundle install
- Setup the database
rake db:setup
- Get the 'application.yml' file from any of the EventX contributors. The contents of this file have also been pinned to the 'galaxy' channel.
- Place this file in config folder
- Start the Rails server
rails -s
- Open your browser and go to
http://lvh.me:3000
to view the local site.