Some checks failed
CI / v3 / Check ui (pull_request) Failing after 15s
CI / v3 / Test backend (pull_request) Failing after 16s
CI / v3 / Docker / backend (pull_request) Has been skipped
CI / v3 / Docker / runner (pull_request) Has been skipped
CI / v3 / Docker / ui (pull_request) Has been skipped
- Remove all pre-v3 code: scraper, ui-v2, backend v1, ios v1+v2, legacy CI workflows - Flatten v3/ contents to repo root - Add Doppler secrets management (project=libnovel, config=prd) - Add justfile with doppler run wrappers for all docker compose commands - Strip hardcoded env fallbacks from docker-compose.yml - Add minimal README.md - Clean up .gitignore
29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
# ── Go toolchain ───────────────────────────────────────────────────────────────
|
|
*.test
|
|
*.out
|
|
/vendor/
|
|
/dist/
|
|
|
|
# ── Compiled binaries ──────────────────────────────────────────────────────────
|
|
backend/bin/
|
|
|
|
# ── Environment & secrets ──────────────────────────────────────────────────────
|
|
# Secrets are managed by Doppler — never commit .env files.
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
|
|
# ── CrowdSec — generated bouncer API key ──────────────────────────────────────
|
|
crowdsec/.crowdsec.env
|
|
|
|
# ── OS artefacts ───────────────────────────────────────────────────────────────
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ── Editor / IDE ───────────────────────────────────────────────────────────────
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|