Workspace Setup

Initialize development environment for a project. Use when setting up a new project, onboarding a developer, or configuring dependencies. Use when this capability is needed.

tomevault-io 1a1ea16 2 files · 1.7 KB Updated

File contents

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
  • .env configured (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.example as template
  • Record issues in wiki/experience/

Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/hscspring--create-vibe-app--workspace-setup commit 1a1ea1601c

Frequently asked questions

npx skillmds@latest add tomevault-io/workspace-setup