-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
25 lines (23 loc) · 1.2 KB
/
Copy path.env.example
File metadata and controls
25 lines (23 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# ============================================================
# .env.example
#
# Copy to .env and fill in real values.
# NEVER commit .env — it is in .gitignore.
#
# cp .env.example .env
#
# ============================================================
# ── Docker Hub ────────────────────────────────────────────────────────
# Your Docker Hub username — used by docker-compose.yml to pull the
# pre-built dev image and by docker.yml to push the prod image.
DOCKERHUB_USERNAME=your-dockerhub-username
# ── Cross-platform SSH & Git mounts ───────────────────────────────────
# docker-compose.yml mounts your host SSH keys and .gitconfig using
# ${USERPROFILE:-$HOME} which works on all platforms automatically:
#
# Windows → USERPROFILE is set automatically (e.g. C:\Users\you)
# macOS → HOME is set automatically (e.g. /Users/you)
# Linux → HOME is set automatically (e.g. /home/you)
#
# Only set this manually if your SSH keys live in a non-standard path.
# USERPROFILE=C:\Users\your-username