Skip to content

Commit 27f3836

Browse files
authored
ensures .env is not skipped for laravel deployments (GoogleCloudPlatform#284)
1 parent 12aabef commit 27f3836

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appengine/flexible/laravel/app.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ env_variables:
1919
DB_PASSWORD: YOUR_DB_PASSWORD
2020
DB_SOCKET: /cloudsql/YOUR_CLOUDSQL_CONNECTION_NAME
2121

22+
# required on some platforms so ".env" is not skipped
23+
skip_files: false
24+
2225
beta_settings:
2326
# for Cloud SQL, uncomment and set this value to the Cloud SQL
2427
# connection name, e.g.
2528
# "project:region:cloudsql-instance"
26-
cloud_sql_instances: "YOUR_CLOUDSQL_CONNECTION_NAME"
29+
cloud_sql_instances: "YOUR_CLOUDSQL_CONNECTION_NAME"

0 commit comments

Comments
 (0)