shadow/README.md
2024-04-23 15:44:52 -04:00

32 lines
No EOL
528 B
Markdown

# Shadow
A blogging platform for Shadow Hosting.
## Development
Requirements:
- NodeJS + Bun (issue with some dev things)
- Golang 1.22
Install the JS dependencies with `bun install`, and go dependencies with `go get`
Create a config file and set `dev` to be true:
```toml
version = 1
dev = true
app_url = "http://192.168.1.40:3030"
[server]
host = "0.0.0.0"
port = 3030
cloudflare_proxy = false
```
To start the development server (vite will run with it):
```bash
go run *.go run
```
## Building
No info at this time