development-hub/templates
rob 28f40f7edd Initial project setup
Development Hub - Central project orchestration for the development ecosystem.

Features:
- new-project script for automated project scaffolding
- Templates for Python projects
- Integration with centralized documentation system
- Gitea API integration for repo creation
2026-01-05 18:25:36 -04:00
..
CLAUDE.md.template Initial project setup 2026-01-05 18:25:36 -04:00
README.md.template Initial project setup 2026-01-05 18:25:36 -04:00
gitignore.template Initial project setup 2026-01-05 18:25:36 -04:00
overview.md.template Initial project setup 2026-01-05 18:25:36 -04:00
pyproject.toml.template Initial project setup 2026-01-05 18:25:36 -04:00
updating-documentation.md.template Initial project setup 2026-01-05 18:25:36 -04:00

README.md.template

# {{PROJECT_TITLE}}

{{PROJECT_TAGLINE}}

## Installation

```bash
pip install -e .
```

## Usage

*TODO: Add usage instructions*

## Documentation

Full documentation is available at: https://pages.brrd.tech/{{GITEA_OWNER}}/{{PROJECT_NAME}}/

## Development

```bash
# Clone the repository
git clone {{GITEA_URL}}/{{GITEA_OWNER}}/{{PROJECT_NAME}}.git
cd {{PROJECT_NAME}}

# Create virtual environment
python -m venv .venv
source .venv/bin/activate

# Install for development
pip install -e ".[dev]"

# Run tests
pytest
```

## License

*TODO: Add license*