mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 19:49:25 +01:00
- Detect Windows platform and use named pipe (//./pipe/docker_engine) instead of Unix socket for Docker Desktop compatibility - Add NOMAD_STORAGE_PATH environment variable for configurable storage paths across different platforms - Update seeder to use environment variable with Linux default - Document new environment variable in .env.example This enables local development on Windows machines with Docker Desktop while maintaining Linux production compatibility. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
459 B
Plaintext
18 lines
459 B
Plaintext
PORT=8080
|
|
HOST=localhost
|
|
LOG_LEVEL=info
|
|
APP_KEY=some_random_key
|
|
NODE_ENV=development
|
|
SESSION_DRIVER=cookie
|
|
DB_HOST=localhost
|
|
DB_PORT=3306
|
|
DB_USER=root
|
|
DB_DATABASE=nomad
|
|
DB_PASSWORD=password
|
|
DB_SSL=false
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
# Storage path for NOMAD content (ZIM files, maps, etc.)
|
|
# On Windows dev, use an absolute path like: C:/nomad-storage
|
|
# On Linux production, use: /opt/project-nomad/storage
|
|
NOMAD_STORAGE_PATH=/opt/project-nomad/storage |