-
Notifications
You must be signed in to change notification settings - Fork 349
feat: add Fizzy template blueprint #716
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: canary
Are you sure you want to change the base?
Changes from all commits
f1cd2ae
0033d8d
1c96e4f
838baca
0f12c1f
72aa05c
d66c0e2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| version: "3.8" | ||
| services: | ||
| fizzy: | ||
| image: ghcr.io/basecamp/fizzy:1.0.0 | ||
|
||
| restart: unless-stopped | ||
|
|
||
| environment: | ||
| # Rails | ||
| RAILS_ENV: production | ||
| RAILS_LOG_TO_STDOUT: "1" | ||
|
|
||
| # Secrets | ||
| SECRET_KEY_BASE: ${SECRET_KEY_BASE:?set SECRET_KEY_BASE} | ||
| VAPID_PUBLIC_KEY: ${VAPID_PUBLIC_KEY:?set VAPID_PUBLIC_KEY} | ||
| VAPID_PRIVATE_KEY: ${VAPID_PRIVATE_KEY:?set VAPID_PRIVATE_KEY} | ||
|
|
||
| MAILER_FROM_ADDRESS: ${MAILER_FROM_ADDRESS:?set MAILER_FROM_ADDRESS} | ||
| SMTP_ADDRESS: ${SMTP_ADDRESS:?set SMTP_ADDRESS} | ||
| SMTP_PORT: ${SMTP_PORT:-2525} | ||
| SMTP_USERNAME: ${SMTP_USERNAME:-} | ||
| SMTP_PASSWORD: ${SMTP_PASSWORD:-} | ||
|
|
||
| # Fizzy behavior | ||
| MULTI_TENANT: ${MULTI_TENANT:-false} | ||
| SOLID_QUEUE_IN_PUMA: ${SOLID_QUEUE_IN_PUMA:-true} | ||
|
|
||
| volumes: | ||
| # Contains SQLite DB + ActiveStorage | ||
| - fizzy_storage:/rails/storage | ||
|
|
||
| expose: | ||
| - "3000" | ||
|
|
||
| volumes: | ||
| fizzy_storage: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| [variables] | ||
| main_domain = "${domain}" | ||
| secret_key_base = "${base64:64}" | ||
| vapid_public_key = "${base64:64}" | ||
| vapid_private_key = "${base64:64}" | ||
| mailer_from_address = "fizzy@${main_domain}" | ||
| smtp_address = "smtp.example.com" | ||
| smtp_port = "2525" | ||
| smtp_username = "" | ||
| smtp_password = "" | ||
| multi_tenant = "false" | ||
| solid_queue_in_puma = "true" | ||
|
|
||
| [config] | ||
| mounts = [] | ||
|
|
||
| env = [ | ||
| "SECRET_KEY_BASE=${secret_key_base}", | ||
| "VAPID_PUBLIC_KEY=${vapid_public_key}", | ||
| "VAPID_PRIVATE_KEY=${vapid_private_key}", | ||
| "MAILER_FROM_ADDRESS=${mailer_from_address}", | ||
| "SMTP_ADDRESS=${smtp_address}", | ||
| "SMTP_PORT=${smtp_port}", | ||
| "SMTP_USERNAME=${smtp_username}", | ||
| "SMTP_PASSWORD=${smtp_password}", | ||
| "MULTI_TENANT=${multi_tenant}", | ||
| "SOLID_QUEUE_IN_PUMA=${solid_queue_in_puma}", | ||
| ] | ||
|
|
||
| [[config.domains]] | ||
| serviceName = "fizzy" | ||
| port = 3_000 | ||
| host = "${main_domain}" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2346,6 +2346,25 @@ | |
| "server" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "fizzy", | ||
| "name": "Fizzy", | ||
| "version": "0.1.0", | ||
|
||
| "description": "Fizzy is a Kanban-style tracker for issues and ideas from 37signals.", | ||
| "logo": "fizzy.svg", | ||
| "links": { | ||
| "github": "https://github.com/basecamp/fizzy", | ||
| "website": "https://fizzy.do/", | ||
| "docs": "https://github.com/basecamp/fizzy" | ||
| }, | ||
| "tags": [ | ||
| "kanban", | ||
| "project-management", | ||
| "issues", | ||
| "ideas", | ||
| "self-hosted" | ||
| ] | ||
| }, | ||
| { | ||
| "id": "flagsmith", | ||
| "name": "Flagsmith", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.