diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 000000000..6baf3846b --- /dev/null +++ b/netlify.toml @@ -0,0 +1,17 @@ +# Settings in the [build] context are global and are applied to all contexts +# unless otherwise overridden by more specific contexts. +[build] + # Directory to change to before starting a build. + # This is where we will look for package.json/.nvmrc/etc. + # base = "project/" + + # Directory (relative to root of your repo) that contains the deploy-ready + # HTML files and assets generated by the build. If a base directory has + # been specified, include it in the publish directory path. + publish = "docs/_build/html/" + + # Default build command. + command = "pip install -r docs/requirements.txt; cd docs; make html; cd .." + + # Directory with the serverless Lambda functions to deploy to AWS. + # functions = "project/functions/" \ No newline at end of file diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 000000000..548d71365 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +3.7 \ No newline at end of file