- Update the retro theme CSS to style the dashboard, account, and admin pages with a classic Windows 98 aesthetic (silver sidebar, bevelled tabs, sunken metric cards). - Exclude sidebar links and tabs from default retro link styles to ensure readability. - Add `docker-compose-prod.yml` for production deployments. - Add `.prod.env` to `.gitignore`.
18 lines
209 B
Plaintext
18 lines
209 B
Plaintext
# Go
|
|
bin/
|
|
*.test
|
|
*.out
|
|
|
|
# Local runtime data
|
|
data/
|
|
backend/static/uploads/*
|
|
!backend/static/uploads/.gitkeep
|
|
|
|
# Environment overrides
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.prod.env
|
|
scripts/env/dev.env
|
|
docker-compose.yml
|