You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [.schemas/development.json](.schemas/development.json) for the complete schema.
21
+
22
+
### Hosting Configuration
23
+
24
+
The `hosting.yaml` file defines:
25
+
26
+
- Domain names and their registrar information
27
+
- Deployment environments (production/staging) and their URLs
28
+
29
+
Example:
30
+
31
+
```yaml
32
+
domains:
33
+
- name: example.com
34
+
registrar: namecheap-codeforphilly
35
+
expiration: 2025-12-31
36
+
37
+
deployments:
38
+
- name: production
39
+
environment: cfp-live-cluster
40
+
urls:
41
+
- https://example.com
42
+
- https://www.example.com
43
+
```
44
+
45
+
See [.schemas/hosting.json](.schemas/hosting.json) for the complete schema.
46
+
47
+
## Development
48
+
49
+
### Schema Validation
50
+
51
+
The repository includes JSON Schema definitions in the `.schemas/` directory that provide validation and autocompletion in VSCode while editing the YAML files with the "YAML" VSCode extension by Red Had installed.
0 commit comments