5 Commits

Author SHA1 Message Date
Tex
69b2ae6514 Merge pull request #8 from allburov/patch-1
Some checks failed
Publish Image / build (push) Has been cancelled
Use "bash bootstrap.sh"
2024-01-22 17:37:54 +08:00
Tex
50bdfa73bc Merge pull request #10 from allburov/patch-2
Increase appName and processName max limits
2024-01-22 17:37:22 +08:00
Alex
37a9e55061 Increase appName and processName max limits
fix #9
2024-01-18 19:58:38 +07:00
Alex
42d6985dab Use "bash bootstrap.sh" 2024-01-18 15:21:01 +07:00
Tex
ec8f853c84 fix docs link 2023-07-18 07:59:21 +08:00
3 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ A friendly interface for [Dokku](https://github.com/dokku/dokku), the open-sourc
![](https://raw.githubusercontent.com/texm/shokku/main/web/static/images/app-overview.webp)
## Usage
Read the [docs](https://shokku.app)
Read the [docs](https://shokku.dev/docs)
## Support
Shokku is provided 'as-is' - no support is available.

View File

@@ -42,8 +42,8 @@ func NewRequestValidator() *requestValidator {
if err != nil {
log.Fatal().Err(err).Msg("failed to register validator")
}
v.RegisterAlias("appName", "appNameChars,min=4,max=16")
v.RegisterAlias("processName", "appNameChars,min=2,max=16")
v.RegisterAlias("appName", "appNameChars,min=4,max=32")
v.RegisterAlias("processName", "appNameChars,min=2,max=32")
return &requestValidator{validator: v}
}

View File

@@ -3,7 +3,7 @@
const scriptInstallCommands = [
`wget "${bootstrapLink}"`,
`export SHOKKU_LETSENCRYPT_EMAIL="foo@example.com"`,
`bash install.sh`,
`bash bootstrap.sh`,
];
</script>