Spaces:
Sleeping
Sleeping
Update README.md
Browse files
README.md
CHANGED
@@ -11,14 +11,31 @@ hf_oauth: true
|
|
11 |
hf_oauth_scopes:
|
12 |
- read-repos
|
13 |
space_ci:
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
---
|
23 |
|
24 |
# Listen to Pull Requests and start ephemeral Spaces on new PRs! 🚀
|
|
|
11 |
hf_oauth_scopes:
|
12 |
- read-repos
|
13 |
space_ci:
|
14 |
+
trusted_authors:
|
15 |
+
- clefourrier
|
16 |
+
# ^ Only PRs from trusted authors are deployed in an ephemeral Space.
|
17 |
+
# Space owners are automatically trusted.
|
18 |
+
# It is possible to manually trust other authors by adding them as a list.
|
19 |
+
private: auto
|
20 |
+
# ^ Can be 'true', 'false' or 'auto'. If 'auto', the ephemeral Spaces will have same
|
21 |
+
# visibility as the main Space.
|
22 |
+
variables: auto
|
23 |
+
# ^ By default ('auto'), all variables from the main Space are copied to the ephemeral Space.
|
24 |
+
# Otherwise, you can define a key-value mapping with variables to set.
|
25 |
+
# Variables are injected as environment variable in the ephemeral Space and are public for anyone landing on the Space.
|
26 |
+
secrets:
|
27 |
+
- HF_TOKEN
|
28 |
+
# ^ A list of secrets that must be copied from the main Space to the ephemeral Spaces.
|
29 |
+
# Secrets are injected as environment variable in the ephemeral Space.
|
30 |
+
# Be careful with the 'trusted_authors' list when setting secrets.
|
31 |
+
hardware: cpu-basic
|
32 |
+
# ^ Defines which hardware to assign to the ephemeral Space.
|
33 |
+
# Can be set to 'auto' to assign the same hardware as the main Space.
|
34 |
+
# Defaults to 'cpu-basic' (free).
|
35 |
+
storage: null
|
36 |
+
# ^ Defines which storage to assign to the ephemeral Space.
|
37 |
+
# Can be set to 'auto' to assign the same storage as the main Space.
|
38 |
+
# Defaults to no storage (free).
|
39 |
---
|
40 |
|
41 |
# Listen to Pull Requests and start ephemeral Spaces on new PRs! 🚀
|