This is a work-in-progress revamp for the website of Developers Connnect Philippines
This is a Ruby 2.1 + Rails 4.2 + PostgreSQL app so running a local copy should look something like:
git clone git://github.com/devcon-ph/devcon.git
cd devcon
bundle install
cp config/database.yml.example config/database.yml
vim config/database.yml
rake db:create
rake db:migrate
bundle exec guard
Guard will run both the Unicorn server at port 3000 and the specs.
This app uses better_errors for debugging. Don't forget to set the TRUSTED_IP
environment variable if you're not testing on your local machine.
This app also uses rails_panel so you don't need to look at the development log while developing, and rack-livereload so you don't need to reload when you make a change to the views or assets.
To create an admin user, open the console (rails c
) and enter the following:
User.create email: "[email protected]", password: "password", password_confirmation: "password", roles: ["admin", "moderator", "author"]
All future enhancements are logged at https://github.com/devcon-ph/devcon/issues. Anyone may fork this project and provide pull requests related to those enhancements.
This app has only one main branch, the master
branch.
When deploying a new build, test it first in staging (http://beta.devcon.ph) using bundle exec cap staging deploy
.
Once verified, you can now deploy it to the production site (http://devcon.ph) using bundle exec cap production deploy
.
As of this writing, only Bry and Terence have access rights to deploy to the server.