8d2c5a063b
Deploy static content from Git repository folders with optional server-side
API endpoints. Supports Gitea/Forgejo/Gogs, GitHub, and GitLab with provider
autodetection.
- New Sites entity with CRUD, encrypted secrets, and manual/push/tag sync triggers
- Pluggable GitProvider interface with three implementations
- Deno container mode: auto-generates router from API_{method}_{name} exports
- Static container mode: nginx serving files with optional markdown rendering
- Wizard UI with provider selector, repo picker, branch/folder tree pickers
- Deploy pipeline builds fresh image, starts container, configures NPM proxy
- Stop/Start buttons, force redeploy on manual trigger
- Periodic health checker detects crashed containers
- Proxy route existence check during auto-sync
31 lines
750 B
Go
31 lines
750 B
Go
package proxy
|
|
|
|
import "context"
|
|
|
|
// NoneProvider is a no-op proxy provider for deployments that don't use a reverse proxy.
|
|
type NoneProvider struct{}
|
|
|
|
func NewNoneProvider() *NoneProvider { return &NoneProvider{} }
|
|
|
|
func (n *NoneProvider) Name() string { return "none" }
|
|
|
|
func (n *NoneProvider) ConfigureRoute(_ context.Context, _, _ string, _ int, _ RouteOptions) (string, error) {
|
|
return "", nil
|
|
}
|
|
|
|
func (n *NoneProvider) DeleteRoute(_ context.Context, _ string) error {
|
|
return nil
|
|
}
|
|
|
|
func (n *NoneProvider) RouteExists(_ context.Context, _ string) (bool, error) {
|
|
return true, nil
|
|
}
|
|
|
|
func (n *NoneProvider) ContainerLabels(_ string, _ int) map[string]string {
|
|
return nil
|
|
}
|
|
|
|
func (n *NoneProvider) Ping(_ context.Context) error {
|
|
return nil
|
|
}
|