This repository was archived by the owner on Jun 8, 2024. It is now read-only.
File tree 3 files changed +16
-3
lines changed
3 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ It does this by fetching information from every host
9
9
## 📚 Docs
10
10
This API is documented using Swagger.
11
11
12
- You can view the publically hosted documentation [ here] ( https://api.cloud.cbh.kth.se/landing /v2/docs/index.html ) .
12
+ You can view the publically hosted documentation [ here] ( https://api.cloud.cbh.kth.se/sys /v2/docs/index.html ) .
13
13
14
14
## 🤝 Contributing
15
15
Original file line number Diff line number Diff line change
1
+ packages :
2
+ - path : sys-api/dto/body
3
+ output_path : types/body
4
+ type_mappings :
5
+ time.Time : " string"
6
+ - path : sys-api/dto/query
7
+ output_path : types/query
8
+ type_mappings :
9
+ time.Time : " string"
10
+ # - path: sys-api/dto/uri
11
+ # output_path: types/uri
12
+ # type_mappings:
13
+ # time.Time: "string"
Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ func Setup() error {
15
15
return fmt .Errorf ("failed to setup environment. details: %s" , err )
16
16
}
17
17
18
- filepath , found := os .LookupEnv ("LANDING_CONFIG_FILE " )
18
+ filepath , found := os .LookupEnv ("SYS_API_CONFIG_FILE " )
19
19
if ! found {
20
- return makeError (fmt .Errorf ("config file not found. please set LANDING_CONFIG_FILE environment variable" ))
20
+ return makeError (fmt .Errorf ("config file not found. please set SYS_API_CONFIG_FILE environment variable" ))
21
21
}
22
22
23
23
yamlFile , err := os .ReadFile (filepath )
You can’t perform that action at this time.
0 commit comments