Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.29 KB

README.rdoc

File metadata and controls

51 lines (30 loc) · 1.29 KB

README

Initial Configuration

Before first use, you need to configure /config/secrets.yml

An example file is available in /config/secretes.yml.template

Database creation

Database configuration is in config/database.yml

You can find an examples of databases.yml in /config :

  • database.yml.mysql2.template : config file based on mysql2

  • database.yml.sqlite3.template : config file based on sqlite3

Then, use :

RAILS_ENV=development bundle exec rake db:setup
RAILS_ENV=test bundle exec rake db:setup
RAILS_ENV=production bundle exec rake db:setup

Database initialization

Default database is empty

You will need an admin account to configure the application. There is 2 ways to create an admin account :

  • In development environnement : create default accounts

Run :

rake db:populate

It will :

All password are : password

  • In production environnement : create an account manually or connect from omniauth then set admin Role to the created account

Default accounts

Manual Admin granting