-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevbox.yaml.example
More file actions
41 lines (34 loc) · 1.05 KB
/
devbox.yaml.example
File metadata and controls
41 lines (34 loc) · 1.05 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# devbox.yaml — Project workspace configuration
# Copy this file to your project root as devbox.yaml and customize.
# See docs/CONFIG.md for full field reference.
# Workspace name (required — used as container prefix and Tailscale hostname)
name: dodgeprint
# Target server (required — must be reachable via SSH and Tailscale)
server: dev1
# Git repository to clone into the workspace
repo: git@github.com:junixlabs/dodgeprint-source.git
# Branch to checkout (optional, defaults to main)
# Can also be overridden with: devbox up --branch feature/new-ui
branch: main
# Services to run alongside the app (Docker images)
services:
- mysql:8.0
- redis:7-alpine
# Port mappings exposed to the developer machine via Tailscale
ports:
app: 8080
mysql: 3306
redis: 6379
# Environment variables injected into the workspace
env:
APP_ENV: local
APP_DEBUG: "true"
APP_URL: http://localhost:8080
DB_CONNECTION: mysql
DB_HOST: mysql
DB_PORT: "3306"
DB_DATABASE: dodgeprint
DB_USERNAME: root
DB_PASSWORD: secret
CACHE_DRIVER: redis
REDIS_HOST: redis