We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76d0d9d commit 2c29303Copy full SHA for 2c29303
app/config/config.yml
@@ -1,5 +1,6 @@
1
imports:
2
- { resource: parameters.yml }
3
+ - { resource: parameters.php }
4
- { resource: security.yml }
5
- { resource: services.yml }
6
- { resource: github.yml }
app/config/parameters.php
@@ -0,0 +1,5 @@
+<?php
+
+if (getenv('github_token')) {
+ $container->setParameter('github_token', getenv('github_token'));
+}
0 commit comments