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 a809c73 commit caf65b9Copy full SHA for caf65b9
appengine/flexible/analytics/app.yaml
@@ -1,5 +1,6 @@
1
runtime: php
2
env: flex
3
4
-runtime_config:
5
- document_root: web
+env_variables:
+ GA_TRACKING_ID: "YOUR-GA-TRACKING-ID"
6
+
appengine/flexible/analytics/web/index.php renamed to appengine/flexible/analytics/index.php
@@ -17,9 +17,9 @@
17
18
// Install composer dependencies with "composer install"
19
// @see http://getcomposer.org for more information.
20
-require __DIR__ . '/../vendor/autoload.php';
+require __DIR__ . '/vendor/autoload.php';
21
22
-$app = require __DIR__ . '/../app.php';
+$app = require __DIR__ . '/app.php';
23
24
// Run the app!
25
// use "gcloud app deploy"
0 commit comments