mirror of
https://github.com/kyantech/Palmr.git
synced 2025-11-02 13:03:15 +00:00
- Added a new `docker-compose-bind-mount-example.yaml` for easier bind mount configuration. - Updated `.gitignore` to include the `data/` directory for persistent storage. - Modified `docker-compose.yaml` to clarify volume paths and improve comments. - Enhanced `Dockerfile` to support flexible UID/GID configuration and ensure proper directory permissions. - Updated environment variable handling in `server-start.sh` and Prisma configuration for better database management. - Revised documentation in `quick-start.mdx` and `uid-gid-configuration.mdx` to reflect new features and best practices for deployment.
16 lines
324 B
Plaintext
16 lines
324 B
Plaintext
# FOR FILESYSTEM STORAGE ENV VARS
|
|
ENABLE_S3=false
|
|
ENCRYPTION_KEY=change-this-key-in-production-min-32-chars
|
|
DATABASE_URL="file:./palmr.db"
|
|
|
|
# FOR USE WITH S3 COMPATIBLE STORAGE
|
|
# ENABLE_S3=true
|
|
# S3_ENDPOINT=
|
|
# S3_PORT=
|
|
# S3_USE_SSL=
|
|
# S3_ACCESS_KEY=
|
|
# S3_SECRET_KEY=
|
|
# S3_REGION=
|
|
# S3_BUCKET_NAME=
|
|
# S3_FORCE_PATH_STYLE=
|