Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "Hi.Events Dev",
"dockerComposeFile":["../docker/development/docker-compose.dev.yml"],
"service": "frontend",
"workspaceFolder": "/app",
"remoteUser": "root",
"postCreateCommand": "npm install",
"forwardPorts": [5678],
"mounts": [
"source=${localWorkspaceFolder}/frontend,target=/app/frontend,type=bind",
"source=${localWorkspaceFolder}/backend,target=/app/backend,type=bind"
],
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"bmewburn.vscode-intelephense-client",
"ms-azuretools.vscode-docker",
"formulahendry.auto-rename-tag"
]
}
}
}
494 changes: 494 additions & 0 deletions backend/lang/pl.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker/development/docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ services:
redis:
image: 'redis:alpine'
ports:
- '${FORWARD_REDIS_PORT:-6379}:6379'
- '${FORWARD_REDIS_PORT:-6380}:6379'
volumes:
- 'app-redis:/data'
networks:
Expand Down
75 changes: 75 additions & 0 deletions elestio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
ports:
- protocol: "HTTPS"
targetProtocol: "HTTP"
listeningPort: "443"
targetPort: "13336"
targetIP: "172.17.0.1"
public: true
path: "/"
isAuth: false
- protocol: "HTTPS"
targetProtocol: "HTTP"
listeningPort: "64373"
targetPort: "31829"
targetIP: "172.17.0.1"
public: true
path: "/"
isAuth: false
environments:
- key: "SOFTWARE_VERSION_TAG"
value: "latest"
- key: "ADMIN_PASSWORD"
value: "random_password"
- key: "ADMIN_EMAIL"
value: "[EMAIL]"
- key: "DOMAIN"
value: "[CI_CD_DOMAIN]"
- key: "VITE_STRIPE_PUBLISHABLE_KEY"
value: "pk_test"
- key: "POSTGRES_DB"
value: "hi-events"
- key: "POSTGRES_USER"
value: "postgres"
- key: "POSTGRES_PASSWORD"
value: "random_password"
- key: "POSTGRES_HOST"
value: "postgres"
- key: "POSTGRES_PORT"
value: "5432"
- key: "MAIL_MAILER"
value: "smtp"
- key: "MAIL_HOST"
value: "172.17.0.1"
- key: "MAIL_PORT"
value: "25"
- key: "MAIL_FROM_ADDRESS"
value: "[DOMAIN]@vm.elestio.app"
- key: "MAIL_FROM_NAME"
value: "Hi.Events"

config:
runTime: "dockerCompose"
version: ""
framework: ""
buildCommand: "docker-compose build"
buildDir: "/"
runCommand: "docker-compose up -d"
icon: ""
screenshot: "hi-events.png"
lifeCycleConfig:
preInstallCommand: "./scripts/preInstall.sh"
postInstallCommand: "./scripts/postInstall.sh"
preBackupCommand: "./scripts/preBackup.sh"
postBackupCommand: "./scripts/postBackup.sh"
preRestoreCommand: "./scripts/preRestore.sh"
postRestoreCommand: "./scripts/postRestore.sh"
postDeployCommand: "./scripts/postDeploy.sh"
webUI:
- url: "https://[CI_CD_DOMAIN]"
label: "Hi.Events"
login: "[ADMIN_EMAIL]"
password: "[ADMIN_PASSWORD]"
- url: "https://[CI_CD_DOMAIN]:64373"
label: "pgAdmin"
login: "[ADMIN_EMAIL]"
password: "[ADMIN_PASSWORD]"
3 changes: 1 addition & 2 deletions frontend/lingui.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ const config: LinguiConfig = {
"de", // German
"pt", // Portuguese (Portugal)
"vi", // Vietnamese

"it", // Italian
// "pl", // Polish
"pl", // Polish
// "ja", // Japanese
// "ko", // Korean
// "id", // Indonesian
Expand Down
Loading
Loading