Sha256: 1af99cd046bc1e8905b7d3c66cde6c5637fd08b7d34343f782b9b12c801b0b5d

Contents?: true

Size: 1.87 KB

Versions: 5

Compression:

Stored size: 1.87 KB

Contents

conf:
  with_ssl: true
  dir:
    config/deploy/
  virgin_dir:
    config/deploy/virgin_conf/
  files:
    nginx: nginx_site.conf
    nginx_ssl: nginx_site_ssl.conf
    puma: puma.rb
    production_env: production.rb
    datavase_conf: database.yml
    postfix: postfix.cf
  vars:
    cap_application:
    cap_db_user:
    cap_db_password:
    cap_passphrase:
    cap_ruby_version: 2.5.0
    cap_server:
    cap_domain:
    cap_current_path: /home/rails/app_name/current
    cap_shared_path: /home/rails/app_name/shared

sh:
  virgin_dir:
    config/deploy/virgin_sh/
  files:
    - foreman.sh
    - rvm_install.sh
    - capistrano.sh

soft:
  prepare:
  # настройка MySQL
    - debconf-set-selections <<< "mysql-server mysql-server/root_password password password_place"
    - debconf-set-selections <<< "mysql-server mysql-server/root_password_again password password_place"
  # настройка почмейстера
    - debconf-set-selections <<< "postfix postfix/mailname string"
    - debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'"
  # настройка временной зоны
    - echo "Europe/Moscow" > "/etc/timezone"
  apt:
  # Midnight Commander
    - mc
  # Image Magic
    - imagemagick
  # Systemd-sysv
    - systemd-sysv
  # MySQL
    - mysql-client mysql-server libmysqld-dev
  # Node.js
    - nodejs
  # Postfix
    - postfix mailutils libsasl2-2 ca-certificates libsasl2-modules
  # NGINX
    - nginx
  # GIT
    - git
  commands:
    - echo 'no commands'
  # MySQL
    - mysql_install_db
  # REDIS
    - wget http://download.redis.io/redis-stable.tar.gz
    - tar xvzf redis-stable.tar.gz
    - cd redis-stable
    - make
    - cp src/redis-server /usr/local/bin/
    - cp src/redis-cli /usr/local/bin/
    - cp /root/redis-stable/redis.conf /usr/local/etc/
  gems:
  # Rails
    - rails
  # Foreman
    - foreman
  # MySQL
    - mysql2

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
digital_heroes_startkit-0.1.1.4 lib/generators/project/config/capistrano.yml
digital_heroes_startkit-0.1.1.3 lib/generators/project/config/capistrano.yml
digital_heroes_startkit-0.1.1.2 lib/generators/project/config/capistrano.yml
digital_heroes_startkit-0.1.1.1 lib/generators/project/config/capistrano.yml
digital_heroes_startkit-0.1.1 lib/generators/project/config/capistrano.yml