bitcoin-services-home/README.md
2025-12-24 10:39:09 +01:00

34 lines
629 B
Markdown

# Bitcoin Services Home
Static site generator for sharing self-hosted service information.
## Usage
### Build the site
```bash
make build
```
or
```bash
python3 build.py
```
### Serve locally
```bash
make serve
```
Serves the site at http://localhost:8000
### Deploy to remote server
```bash
make deploy
```
Before deploying, copy `deploy.config.example` to `deploy.config` and fill in your server details.
Edit `config/services.json` to customize content. Output is generated in `dist/`.
## Structure
- `src/` - Template and styles
- `config/services.json` - Site configuration
- `dist/` - Generated output (gitignored)