-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnow.json
25 lines (25 loc) · 795 Bytes
/
now.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "symfony-demo",
"version": 2,
"env": {
"APP_ENV": "prod",
"APP_DEBUG": "0",
"APP_SECRET": "secret123",
"DATABASE_URL": "sqlite:///%kernel.project_dir%/data/database.sqlite",
"MAILER_URL": "null://localhost"
},
"builds": [
{ "src": "public/index.php", "use": "now-php" },
{ "src": "public/!(*.php)", "use": "@now/static" },
{ "src": "public/**/!(*.php)", "use": "@now/static" }
],
"routes": [
{ "src": "/apple-touch-icon.png", "dest": "public/apple-touch-icon.png"},
{ "src": "/favicon.ico", "dest": "public/favicon.ico"},
{ "src": "/robots.txt", "dest": "public/robots.txt"},
{ "src": "/build/(.*)", "dest": "public/build/$1"},
{ "src": "/(.*)", "dest": "public/index.php" }
],
"public": true,
"scope": "ties"
}