2025-12-24 10:22:13 +01:00
|
|
|
# Bitcoin Services Home
|
|
|
|
|
|
|
|
|
|
Static site generator for sharing self-hosted service information.
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
2025-12-24 10:39:09 +01:00
|
|
|
### Build the site
|
|
|
|
|
```bash
|
|
|
|
|
make build
|
|
|
|
|
```
|
|
|
|
|
or
|
2025-12-24 10:22:13 +01:00
|
|
|
```bash
|
|
|
|
|
python3 build.py
|
|
|
|
|
```
|
|
|
|
|
|
2025-12-24 10:39:09 +01:00
|
|
|
### 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.
|
|
|
|
|
|
2025-12-24 10:22:13 +01:00
|
|
|
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)
|