- Integrated a React-based web frontend into the Go server using the `embed` package, serving it from `/`. - Added build and development scripts utilizing Bun for the React app (`package.json`, `README.md`). - Enhanced auth interface to support better user experience and permissions (`App.jsx`, CSS updates). - Refactored `/api/auth/login` to serve React UI, removing hardcoded HTML template. - Implemented `/api/permissions/` with ACL support for user access management.
31 lines
304 B
Plaintext
31 lines
304 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Bun
|
|
.bunfig.toml
|
|
bun.lockb
|
|
|
|
# Build directories
|
|
dist
|
|
build
|
|
|
|
# Cache and logs
|
|
.cache
|
|
.temp
|
|
.log
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo |