-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.yml
More file actions
38 lines (32 loc) · 1.41 KB
/
Copy pathproject.yml
File metadata and controls
38 lines (32 loc) · 1.41 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
project:
# The project name
name: email-scheduler
# The project identifier is used to ensure your workspaces will have unique names.
# This is not a secret, but don't lose it!
identifier: b40db9
## The 'public' directory is where you put static files.
## Files will be served from there first, meaning that if
## you have a function at 'functions/product' and a folder
## 'public/product', the public one will take precedence.
## Defaults to 'public'.
# public_dir: public
## The name of the folder containing the project's functions.
## Defaults to 'functions'.
# functions_dir: functions
## Opal support (experimental)
## You can use Opal to write Ruby code and have it autocompiled to
## Javascript and placed inside the public assets folder.
## If 'opal_dir' is set, folders inside 'opal_dir' that contain
## a file named 'main.rb' will be compiled using opal
# opal_dir: opal
## Destination folder for .js files created by Opal.
## Defaults to PUBLIC_DIR/assets/javascripts
# opal_js_destination: public/assets/javascripts
## The name of the function that will respond to requests made
## to '/'. Defaults to 'root'
# root_to: root
## The setting 'catch_all' allows you to capture requests to
## non-existing functions and send them to another function.
## This is useful for setting custom 404 pages, for example.
## Defaults to 'catch-all'.
# catch_all: catch-all