Merge pull request #2501 from betagouv/install-and-upgrade-scripts

Utilise bin/setup et bin/update pour créer et maintenir l'environnement de développement
This commit is contained in:
Pierre de La Morinerie 2018-09-03 14:53:13 +02:00 committed by GitHub
commit 994ecf8cb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 39 deletions

View file

@ -12,11 +12,10 @@ demarches-simplifiees.fr est un site web conçu afin de répondre au besoin urge
### Développement
- Mailcatcher : `gem install mailcatcher`
- Yarn : voir https://yarnpkg.com/en/docs/install
- Overmind :
* Mac : `brew install overmind`
* Linux : voir https://github.com/DarthSim/overmind#installation
- Yarn : voir https://yarnpkg.com/en/docs/install
### Tests
@ -25,14 +24,7 @@ demarches-simplifiees.fr est un site web conçu afin de répondre au besoin urge
* Mac : `brew install chromedriver`
* Linux : voir https://sites.google.com/a/chromium.org/chromedriver/downloads
## Initialisation de l'environnement de développement
Afin d'initialiser l'environnement de développement, exécutez la commande suivante :
bundle install
yarn install
## Création de la base de données
## Création des rôles de la base de données
Les informations nécessaire à l'initialisation de la base doivent être pré-configurées à la main grâce à la procédure suivante :
@ -42,21 +34,11 @@ Les informations nécessaire à l'initialisation de la base doivent être pré-c
> create user tps_test with password 'tps_test' superuser;
> \q
Afin de générer la BDD de l'application, il est nécessaire d'exécuter les commandes suivantes :
## Initialisation de l'environnement de développement
# Create and initialize the database
bin/rails db:create db:schema:load db:seed
Afin d'initialiser l'environnement de développement, exécutez la commande suivante :
# Migrate the development database and the test database
bin/rails db:migrate
## Bouchonnage de la configuration
Créer le fichier de configuration avec les valeurs par défaut :
cp config/env.example .env
*Note : les vraies valeurs pour ces paramètres sont renseignées dans le Keepass*
bin/setup
## Lancement de l'application
@ -72,6 +54,12 @@ L'application tourne à l'adresse `http://localhost:3000`. Un utilisateur de tes
FindDubiousProceduresJob.set(cron: "0 0 * * *").perform_later
Administrateurs::ActivateBeforeExpirationJob.set(cron: "0 8 * * *").perform_later
## Mise à jour de l'application
Pour mettre à jour votre environnement de développement, installer les nouvelles dépendances et faire jouer les migrations, exécutez :
bin/update
## Exécution des tests (RSpec)
Pour exécuter les tests de l'application, plusieurs possibilités :

View file

@ -13,24 +13,27 @@ chdir APP_ROOT do
# This script is a starting point to setup your application.
# Add necessary setup steps to this file.
puts '== Installing dependencies =='
puts '== Installing global tools =='
system! 'gem install mailcatcher --conservative'
puts "\n== Installing dependencies =="
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
system! 'bin/yarn install'
# Install JavaScript dependencies if using Yarn
# system('bin/yarn')
# puts "\n== Copying sample files =="
# unless File.exist?('config/database.yml')
# cp 'config/database.yml.sample', 'config/database.yml'
# end
puts "\n== Copying sample files =="
unless File.exist?('.env')
cp 'config/env.example', '.env'
end
# Create the database, load the schema, and initialize it with the seed data
puts "\n== Preparing database =="
system! 'bin/rails db:setup'
puts "\n== Removing old logs and tempfiles =="
system! 'bin/rails log:clear tmp:clear'
puts "\n== Restarting application server =="
system! 'bin/rails restart'
puts "\n== Done =="
puts "You can now start the application server with `overmind start`."
end

View file

@ -16,16 +16,14 @@ chdir APP_ROOT do
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system('bundle check') || system!('bundle install')
# Install JavaScript dependencies if using Yarn
# system('bin/yarn')
system! 'bin/yarn install'
puts "\n== Updating database =="
system! 'bin/rails db:migrate'
puts "\n== Removing old logs and tempfiles =="
system! 'bin/rails log:clear tmp:clear'
puts "\n== Removing old logs =="
system! 'bin/rails log:clear'
puts "\n== Restarting application server =="
system! 'bin/rails restart'
puts "\n== Done =="
puts "You can now start (or restart) the application server with `overmind start`."
end