Merge pull request #23 from Portabase/fix/development-conf

fix: update configuration for local development
This commit is contained in:
Killian Larcher
2026-01-18 10:28:37 +01:00
committed by GitHub
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -1,18 +1,18 @@
# Environnement # Environnement
NODE_ENV=production NODE_ENV=development
# Base de données # Base de données
DATABASE_URL=postgresql://devuser:changeme@db:5432/devdb?schema=public DATABASE_URL=postgresql://devuser:changeme@localhost:5432/devdb?schema=public
# Projet # Projet
PROJECT_NAME="Portabase" PROJECT_NAME="Portabase"
PROJECT_DESCRIPTION="Portabase is a powerful database manager" PROJECT_DESCRIPTION="Portabase is a powerful database manager"
PROJECT_URL=http://app.portabase.io PROJECT_URL=http://localhost:8887
PROJECT_SECRET= PROJECT_SECRET=
# SMTP (email) # SMTP (email)
SMTP_HOST= SMTP_HOST=
SMTP_PORT=587 SMTP_PORT=
SMTP_USER= SMTP_USER=
SMTP_PASSWORD= SMTP_PASSWORD=
SMTP_FROM= SMTP_FROM=
@@ -23,14 +23,14 @@ AUTH_GOOGLE_SECRET=
AUTH_GOOGLE_METHOD= AUTH_GOOGLE_METHOD=
# S3 # S3
S3_ENDPOINT=http://app.s3.portabase.io S3_ENDPOINT=
S3_ACCESS_KEY= S3_ACCESS_KEY=
S3_SECRET_KEY= S3_SECRET_KEY=
S3_BUCKET_NAME=portabase S3_BUCKET_NAME=
S3_PORT=9000 S3_PORT=
S3_USE_SSL=true S3_USE_SSL=
# Storage Type (s3, local) # Storage type (local, S3)
STORAGE_TYPE=local STORAGE_TYPE=local
# Retention # Retention
+1 -1
View File
@@ -4,7 +4,7 @@ services:
db: db:
image: postgres:16-alpine image: postgres:16-alpine
ports: ports:
- "5433:5432" - "5432:5432"
volumes: volumes:
- postgres-data:/var/lib/postgresql/data - postgres-data:/var/lib/postgresql/data
environment: environment: