Skip to content
forked from alphagov/release

An application to make managing releases to specific environments easier

License

Notifications You must be signed in to change notification settings

rmoorman/release

 
 

Repository files navigation

Release

Build Status Dependency Status

An application to make managing releases to specific environments easier.

Getting started

  1. Create app-specific mysql user (check config/database.yml for user details):

    mysql.server start
    mysql -u root
    
    # Create release user
    CREATE USER 'release'@'localhost' IDENTIFIED BY 'release';
    GRANT ALL PRIVILEGES
    ON `release_%`.*
    TO 'release'@'localhost'
    WITH GRANT OPTION;
    FLUSH PRIVILEGES;
    exit
    
  2. Install dependencies, create databases and run initial migrations, test:

    bundle install
    bundle exec rake db:create:all db:migrate
    bundle exec rake
    
  3. Create applications in db/seeds.rb:

    bundle exec rake db:seed
    

About

An application to make managing releases to specific environments easier

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 75.9%
  • HTML 18.8%
  • CSS 3.1%
  • JavaScript 1.4%
  • Shell 0.8%