Skip to content

Instantly share code, notes, and snippets.

@1oglop1
Created November 14, 2019 21:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1oglop1/e828e194485be5055fdc4043d58a8a56 to your computer and use it in GitHub Desktop.
Save 1oglop1/e828e194485be5055fdc4043d58a8a56 to your computer and use it in GitHub Desktop.
Now config
{
"version": 2,
"name": "blog",
"builds": [
{
"src": "api/**/*.py",
"use": "@now/python"
},
{
"src": "www/**/*",
"use": "@now/static"
}
],
"routes": [
{
"src": "/",
"dest": "www/index.html"
},
{
"src": "^/api/(search|search\\.py)$",
"dest": "api/search.py"
},
{
"src": "^/api/(ls|ls\\.py)$",
"dest": "api/ls.py"
},
{
"status": 404,
"src": "/api(\\/.*)?$"
}
],
"env": {
"WHOOSH_INDEX_DIRECTORY": "@secret"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment