Skip to content
Snippets Groups Projects
Select Git revision
  • a4b6c53fcfb5759e928c0b80be76780ff8be454d
  • master default protected
2 results

layout.html

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    default.yml 1011 B
    ---
    
    app_name: "{{ app.app }}"
    app_user: "{{ app.app }}"
    app_group: "{{ app.app }}"
    app_home: "/var/www/{{ app.app }}"
    app_path: "/var/www/{{ app.app }}"
    app_chdir: "{{ app_path }}"
    app_lang: python
    
    # Python specifics
    app_python_version: 3
    app_venv: "/var/www/{{ app.app }}/venv/"
    app_program: "{{ app.app }}.py"
    app_callable: app
    app_command: ""
    app_module: ''
    
    # Ruby specifics
    app_ruby_version: "2.5"
    app_rack: "{{ app_path }}/config.ru"
    app_gemfile: "{{ app_path }}/Gemfile"
    
    app_mountpoint: /
    app_service_env: []
    app_mules: 0
    app_enable_threads: false
    app_workers: 4
    app_uwsgi_options: []
    
    app_db_name: ''
    app_db_type: ''
    
    app_additional_software: []
    
    app_deploy_key: "{{ inventory_dir }}/files/deploy-keys/{{ app.app }}"
    app_git_url: ""
    app_git_version: HEAD
    app_git_pip: false
    app_git_pip_query: ''
    
    app_requirements_file: requirements.txt
    app_config_file: config.py
    app_secret_config: true
    app_secret_config_keys: []
    
    app_spooler: false
    app_spooler_interval: 30
    app_spooler_dir: "{{app_path}}/spooler"