Workspace Setup
Set up a consistent development environment.
Common Setups
Node.js
npm install
npm run dev
Python
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Rust
cargo build
cargo test
Docker
docker-compose up -d
Checklist
- Dependencies installed
-
.envconfigured (from.env.example) - Dev server starts
- Tests pass
Environment Template
# .env.example
DATABASE_URL=postgresql://user:pass@localhost:5432/db
API_KEY=your-key
DEBUG=true
Tips
- Document setup in README
- Use
.env.exampleas template - Record issues in
wiki/experience/
Converted and distributed by TomeVault — claim your Tome and manage your conversions.