-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c4c65f
commit 74529b1
Showing
17 changed files
with
122 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,5 @@ TODO | |
/ossutil_output | ||
package-lock.json | ||
|
||
op.mjs | ||
op.mjs | ||
VERSION |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
app = "app-name" | ||
primary_region = "gru" | ||
|
||
[build] | ||
image = "ghcr.io/internoapp/pocketblocks:latest" | ||
|
||
[mounts] | ||
source = "data" | ||
destination = "/pocketblocks/data" | ||
|
||
[http_service] | ||
internal_port = 8080 | ||
force_https = true | ||
auto_stop_machines = true | ||
auto_start_machines = true | ||
min_machines_running = 0 | ||
[http_service.concurrency] | ||
type = "requests" | ||
hard_limit = 250 | ||
soft_limit = 200 | ||
|
||
[[http_service.checks]] | ||
interval = "30s" | ||
timeout = "5s" | ||
grace_period = "10s" | ||
method = "GET" | ||
path = "/api/health" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
export default { | ||
translation: { | ||
init: "[I18N]: Init successfully!", | ||
unknown: "Unknown", | ||
authInvalid: "Invalid email/username or password.", | ||
authInvalidEmail: "The email is invalid or already in use!", | ||
authInvalidUsername: "The username is invalid or already in use!", | ||
authInvalidPassword: "Invalid password!", | ||
unauthorized: "You cannot access this resource!", | ||
notFound: "Resource not found.", | ||
serverError: "Something went wrong.", | ||
changeMe: "Change Me", | ||
emailChanged: "Email changed successfully!", | ||
emailChangedSent: | ||
"Email sent! Please visit your Mailbox and confirm your new email.", | ||
emailVerified: "Email verified!", | ||
emailVerifiedSent: | ||
"Email sent! Please visit your Mailbox and verify your account.", | ||
emailVerifiedSentWithLink: | ||
"Access your email to verify your account. If you didn't receive an email, click here!", | ||
passwordReset: "Password reset successfully!", | ||
passwordResetSent: | ||
"Email sent! Please visit your Mailbox and reset your password.", | ||
allUsers: "All Users", | ||
private: "Private", | ||
anonymous: "anonymous", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
export default { | ||
translation: { | ||
init: "[I18N]: Iniciado com sucesso!", | ||
unknown: "Desconhecido", | ||
authInvalid: "Email/username ou senha inválida.", | ||
authInvalidEmail: "O email é inválido ou já está em uso!", | ||
authInvalidUsername: "O usuário é inválido ou já está em uso!", | ||
authInvalidPassword: "Senha incorreta!", | ||
unauthorized: "Você não tem permissão para acessar esse recurso.", | ||
notFound: "Recurso não encontrado", | ||
serverError: "Algo deu errado.", | ||
changeMe: "Me Mude", | ||
emailChanged: "Email alterado com sucesso!", | ||
emailChangedSent: | ||
"Email enviado! Por favor, visite sua caixa de email e confirme-o.", | ||
emailVerified: "Email verificado!", | ||
emailVerifiedSent: | ||
"Email enviado! Por favor, visite sua caixa de email e verifique-o.", | ||
emailVerifiedSentWithLink: | ||
"Acesse seu email para verificá-lo. Se você não recebeu um email, clique aqui!", | ||
passwordReset: "Senha recuperada com sucesso!", | ||
passwordResetSent: | ||
"Email enviado! Por favor, visite sua caixa de email e recupere sua senha.", | ||
allUsers: "Todos os Usuários", | ||
private: "Privado", | ||
anonymous: "Anônimo", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.