-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmeta.go
119 lines (95 loc) · 3.81 KB
/
meta.go
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package encore
import (
"net/url"
"os"
"time"
)
// AppMetadata contains metadata about the running Encore application.
type AppMetadata struct {
// The application ID, if the application is not linked to the Encore platform this will be an empty string.
//
// To link to the Encore platform run `encore app link` from your terminal in the root directory of the Encore app.
AppID string
// The base URL which can be used to call the API of this running application.
//
// For local development it is "http://localhost:<port>", typically "http://localhost:4000".
//
// If a custom domain is used for this environment it is returned here, but note that
// changes only take effect at the time of deployment while custom domains can be updated at any time.
APIBaseURL url.URL
// Information about the environment the app is running in.
Environment EnvironmentMeta
// Information about the running binary itself.
Build BuildMeta
// Information about this deployment of the binary
Deploy DeployMeta
}
type EnvironmentMeta struct {
// The name of environment that this application.
// For local development it is "local".
Name string
// The type of environment is this application running in
// For local development this will be EnvLocal
Type EnvironmentType
// The cloud that this environment is running on
// For local development this is CloudLocal
Cloud CloudProvider
}
type BuildMeta struct {
// The git commit that formed the base of this build.
Revision string
// true if there were uncommitted changes on top of the Commit.
UncommittedChanges bool
}
type DeployMeta struct {
// The deployment ID created by the Encore Platform.
ID string
// The time the Encore Platform deployed this build to the environment.
Time time.Time
}
// EnvironmentType represents the type of environment.
//
// For more information on environment types see https://encore.dev/docs/deploy/environments#environment-types
//
// Additional environment types may be added in the future.
type EnvironmentType string
const (
// EnvProduction represents a production environment.
EnvProduction EnvironmentType = "production"
// EnvDevelopment represents a long-lived cloud-hosted, non-production environment, such as test environments.
EnvDevelopment EnvironmentType = "development"
// EnvEphemeral represents short-lived cloud-hosted, non-production environments, such as preview environments
// that only exist while a particular pull request is open.
EnvEphemeral EnvironmentType = "ephemeral"
// EnvLocal represents the local development environment when using 'encore run' or `encore test`.
//
// Deprecated: EnvLocal is deprecated and Encore will no longer return this value. A locally running environment
// can be identified by the combination of EnvDevelopment && CloudLocal. This constant will be removed in a future
// version of Encore.
EnvLocal EnvironmentType = "local"
// EnvTest represents a running unit test
EnvTest EnvironmentType = "test"
)
// CloudProvider represents the cloud provider this application is running in.
//
// For more information about how Cloud Providers work with Encore, see https://encore.dev/docs/deploy/own-cloud
//
// Additional cloud providers may be added in the future.
type CloudProvider string
const (
CloudAWS CloudProvider = "aws"
CloudGCP CloudProvider = "gcp"
CloudAzure CloudProvider = "azure"
// EncoreCloud is Encore's own cloud offering, and the default provider for new Environments.
EncoreCloud CloudProvider = "encore"
// CloudLocal is used when an application is running from the Encore CLI by using either
// 'encore run' or 'encore test'
CloudLocal CloudProvider = "local"
)
// doPanic is a wrapper around panic to prevent static analysis tools
// from thinking Encore APIs unconditionally panic.,
func doPanic(v any) {
if os.Getenv("ENCORERUNTIME_NOPANIC") == "" {
panic(v)
}
}