feat: add Flagsmith Blueprint (#147)

* feat(blueprints): add Flagsmith blueprint

* Update blueprints/flagsmith/docker-compose.yml

* Update blueprints/flagsmith/docker-compose.yml

* Update blueprints/flagsmith/docker-compose.yml

* Update blueprints/flagsmith/docker-compose.yml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
Çağdaş Karademir
2025-05-25 02:50:26 +03:00
committed by GitHub
parent f3358000b1
commit 108df8f4ff
4 changed files with 112 additions and 1 deletions

View File

@@ -0,0 +1,76 @@
# See https://docs.flagsmith.com/deployment/docker for more information on running Flagsmith in Docker
# This Docker Compose file will run the entire Flagsmith Platform
volumes:
pgdata:
services:
postgres:
image: postgres:15.5-alpine
environment:
POSTGRES_PASSWORD: ${DATABASE_PASSWORD}
POSTGRES_DB: flagsmith
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -d flagsmith -U postgres"]
interval: 2s
timeout: 2s
retries: 20
start_period: 20s
flagsmith:
image: docker.flagsmith.com/flagsmith/flagsmith:2.177.1
environment:
# All environments variables are available here:
# API: https://docs.flagsmith.com/deployment/locally-api#environment-variables
# UI: https://docs.flagsmith.com/deployment/locally-frontend#environment-variables
DATABASE_URL: postgresql://postgres:${DATABASE_PASSWORD}@postgres:5432/flagsmith
USE_POSTGRES_FOR_ANALYTICS: "true" # Store API and Flag Analytics data in Postgres
ENVIRONMENT: production # set to 'production' in production.
DJANGO_ALLOWED_HOSTS: "*" # Change this in production
FLAGSMITH_DOMAIN: ${FLAGSMITH_DOMAIN:-localhost:8000} # Change this in production
DJANGO_SECRET_KEY: ${DJANGO_SECRET_KEY} # Change this in production
# PREVENT_SIGNUP: 'true' # Uncomment to prevent additional signups
# ALLOW_REGISTRATION_WITHOUT_INVITE: 'true'
# Enable Task Processor
TASK_RUN_METHOD: TASK_PROCESSOR # other options are: SYNCHRONOUSLY, SEPARATE_THREAD (default)
PROMETHEUS_ENABLED: "true"
# Uncomment if you want to enable Google OAuth. Note this does not turn Google OAuth on. You still need to use
# Flagsmith on Flagsmith to enable it - https://docs.flagsmith.com/deployment/#oauth_google
# DJANGO_SECURE_CROSS_ORIGIN_OPENER_POLICY: 'same-origin-allow-popups'
# For more info on configuring E-Mails - https://docs.flagsmith.com/deployment/locally-api#environment-variables
# Example SMTP:
# EMAIL_BACKEND: django.core.mail.backends.smtp.EmailBackend
# EMAIL_HOST: mail.example.com
# SENDER_EMAIL: flagsmith@example.com
# EMAIL_HOST_USER: flagsmith@example.com
# EMAIL_HOST_PASSWORD: smtp_account_password
# EMAIL_PORT: 587 # optional
# EMAIL_USE_TLS: 'true' # optional
ports:
- 8000
depends_on:
postgres:
condition: service_healthy
# The flagsmith_processor service is only needed if TASK_RUN_METHOD set to TASK_PROCESSOR
# in the application environment
flagsmith-task-processor:
image: docker.flagsmith.com/flagsmith/flagsmith:2.177.1
environment:
DATABASE_URL: postgresql://postgres:${DATABASE_PASSWORD}@postgres:5432/flagsmith
USE_POSTGRES_FOR_ANALYTICS: "true"
DJANGO_ALLOWED_HOSTS: "*"
PROMETHEUS_ENABLED: "true"
ports:
- 8000
depends_on:
- flagsmith
command: run-task-processor

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,17 @@
[variables]
main_domain = "${domain}"
django_secret_key = "${password:8}"
database_password = "${password:16}"
[config]
env = [
"DATABASE_PASSWORD=${database_password}",
"DJANGO_SECRET_KEY=${django_secret_key}",
"FLAGSMITH_DOMAIN=${main_domain}",
]
mounts = []
[[config.domains]]
serviceName = "flagsmith"
port = 8_000
host = "${main_domain}"

View File

@@ -2381,5 +2381,23 @@
"docs": "https://www.rybbit.io/docs"
},
"tags": ["analytics"]
}
},
{
"id": "flagsmith",
"name": "Flagsmith",
"version": "2.177.1",
"description": "Flagsmith is an open-source feature flagging and remote config service.",
"logo": "flagsmith.png",
"links": {
"github": "https://github.com/Flagsmith/flagsmith",
"website": "https://www.flagsmith.com/",
"docs": "https://docs.flagsmith.com/"
},
"tags": [
"feature-flag",
"feature-management",
"feature-toggle",
"remote-configuration"
]
}
]