This is Tijuana Ruby user group app.
This assumes that you have postgres
running and you know how to set up your OAuth secret and id.
Simply:
- Clone it
- Run the generations
- Install dependecies
- Run the migrations
- Run the seeds
- Run the application and enjoy!
git clone git://github.com/rubytij/usergroup.git
cd usergroup
rake config:generate
bundle install
rake db:migrate db:seed
rails s
You can now open your browser and go to http://localhost:3000
to see the app Running.
You can find the longer and more detailed version of how to set up a development environment here.
Simply run rake
inside the app folder.
The app supports multistaging deployment with staging
and production
pre-configured to use the defaults just tell capistrano what stage to use like this:
cap [stage] deploy
To deploy using staging simply cap deploy
(staging
is the default stage).
To deploy to production do cap production deploy
.
The longer and more detailed version is coming soon.