Skip to content

foloinfo/rabbit

Repository files navigation

README

This README would normally document whatever steps are necessary to get the application up and running.

Things you may want to cover:

  • Ruby version

  • System dependencies

  • Configuration

  • Database creation

  • Database initialization

  • How to run the test suite

  • Services (job queues, cache servers, search engines, etc.)

  • Deployment instructions

Please feel free to use a different markup language if you do not plan to run rake doc:app.

rails generate rspec:install sudo apt-get install postgresql postgresql-contrib sudo sudo -u postgres psql CREATE USER ubuntu SUPERUSER PASSWORD ‘password’; UPDATE pg_database SET datistemplate = FALSE WHERE datname = ‘template1’; DROP DATABASE template1; CREATE DATABASE template1 WITH TEMPLATE = template0 ENCODING = ‘UNICODE’; UPDATE pg_database SET datistemplate = TRUE WHERE datname = ‘template1’; c template1 VACUUM FREEZE;