Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rodeyfeld/doppler
personal site / blog
https://github.com/rodeyfeld/doppler
bun go go-templ htmx tailwindcss
Last synced: 5 days ago
JSON representation
personal site / blog
- Host: GitHub
- URL: https://github.com/rodeyfeld/doppler
- Owner: rodeyfeld
- Created: 2024-10-28T21:25:50.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-28T22:31:02.000Z (about 2 months ago)
- Last Synced: 2024-12-28T23:21:06.945Z (about 2 months ago)
- Topics: bun, go, go-templ, htmx, tailwindcss
- Language: Go
- Homepage:
- Size: 5.19 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# doppler
Personal website for rodeyfeld.## local dev
- Create and Migrate db using `goose`:
```bash
go install github.com/pressly/goose/v3/cmd/goose@latest
touch doppler.db
goose -dir internal/db/sql/ sqlite3 doppler.db up
```- To install dependencies:
```bash
bun install
```- To run Go hot reload:
```bash
air
```To watch templ file changes:
```bash
templ generate --watch
```To regenerate Tailwind output:
```bash
bun run tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch
```## docker
Build dockerfile
```bash
docker build --tag doppler .
docker run -p 1323:1323 doppler
```