random fixes and a REVERSE PROXY!!!
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
package models
|
||||
|
||||
type ProjectConfig struct {
|
||||
Name string `json:"name"`
|
||||
Urls []string `json:"urls"`
|
||||
Port int `json:"port"`
|
||||
EnvFile string `json:"env_file"`
|
||||
Environment []string `json:"environment"`
|
||||
Name string `json:"name,omitempty"`
|
||||
Url string `json:"url,omitempty"`
|
||||
Port int `json:"port,omitempty"`
|
||||
EnvFile string `json:"env_file,omitempty"`
|
||||
Environment []string `json:"environment,omitempty"`
|
||||
}
|
||||
|
||||
type App struct {
|
||||
|
||||
@@ -9,6 +9,6 @@ type Containers struct {
|
||||
|
||||
type Deployments struct {
|
||||
ID int64 `json:"id"`
|
||||
URLs string `json:"urls"`
|
||||
URL string `json:"url"`
|
||||
CreatedAt string `json:"created_at"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user