build-configs/templates/env.example.twig

27 lines
588 B
Twig
Raw Normal View History

# {{ managedText | raw }}
2023-03-03 21:46:06 +00:00
export DOCKER_UID=1000
2023-01-19 19:47:15 +00:00
{% if dockerCompose %}
export COMPOSE_PROJECT_NAME={{ name }}
{% if "php" == language %}
2023-01-19 19:47:15 +00:00
export COMPOSE_PROFILES=web,php,database
{% elseif "node" == language %}
export COMPOSE_PROFILES=node
{% endif %}
2023-01-19 19:47:15 +00:00
export DOCKER_WEB_VOLUME=.:{{ project_root }}
2023-01-19 19:47:15 +00:00
{% endif %}
{% if "drupal-project" == type %}
{% if experimental.useNewDatabaseCredentials %}
export MYSQL_DATABASE=app
export MYSQL_PASSWORD=app
export MYSQL_USER=app
{% else %}
export MYSQL_DATABASE=drupal
export MYSQL_PASSWORD=drupal
export MYSQL_USER=drupal
{% endif %}
{% endif %}