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
28 changes: 28 additions & 0 deletions blueprints/spliit/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
services:
spliit:
image: ghcr.io/spliit-app/spliit:1.19.0
restart: unless-stopped
env_file:
- .env
depends_on:
spliit_db:
condition: service_healthy
spliit-db:
image: pgvector/pgvector:pg16
volumes:
- ${DB_DATA_LOCATION}:/var/lib/DBql/data
environment:
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_DATABASE:-spliit}
POSTGRES_INITDB_ARGS: '--data-checksums'
POSTGRES_HOST_AUTH_METHOD: trust
healthcheck:
test:
['CMD', 'pg_isready', '-U', "${DB_USERNAME}", '-d', "${DB_DATABASE:-spliit}"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
env_file:
- .env
Binary file added blueprints/spliit/spliit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions blueprints/spliit/template.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

[variables]
main_domain = "${domain}"
secret_key = "${password}"
project_name = "spliit"

[config]
mounts = []

[[config.domains]]
serviceName = "spliit"
port = 3000
host = "${main_domain}"

[config.env]

DB_USERNAME = "${project_name}-admin"
DB_PASSWORD = "${secret_key}"
DB_DATA_LOCATION = "/data/${project_name}/database"
DB_DATABASE = "${project_name}"

# --- PostgreSQL ---
POSTGRES_PRISMA_URL = "postgresql://${DB_USERNAME}:${DB_PASSWORD}@${project_name}_db:5432/${DB_DATABASE}"
POSTGRES_URL_NON_POOLING = "postgresql://${DB_USERNAME}:${DB_PASSWORD}@${project_name}_db:5432/${DB_DATABASE}"
17 changes: 17 additions & 0 deletions meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -5535,6 +5535,23 @@
"storage"
]
},
{
"id": "spliit",
"name": "Spliit",
"version": "latest",
"description": "Spliit is a lightweight, self-hosted alternative to Auth0 and Clerk. Open-source, cost-effective, and developer-friendly, it provides secure authentication (OAuth, email/password, social logins) with full control over your data. No per-user fees, easy to integrate, and perfect for startups or privacy-focused projects.",
"logo": "spliit.png",
"links": {
"github": "https://github.com/spliit-app/spliit",
"website": "https://spliit.app/",
"docs": "https://github.com/spliit-app"
},
"tags": [
"budgeting",
"finance",
"money"
]
},
{
"id": "stack-auth",
"name": "Stack Auth",
Expand Down