- Excel
- Remember me with cookie
- Login with cookie
- Redis session
- Session slide
- CSRF
- CORS
- Websocket
- OpenAPI
- ID generator
- Default database model
- Authorization
- Casbin RBAC/ABAC
go run app.gomake run-local-autoreloadgo run app.go# Shows all commands
make help
# Clean packages
make clean-packages
# Generate go.mod & go.sum files
make requirements
# Generate docker image
make build
# Generate docker image with no cache
make build-no-cache
# Run the projec in a local container
make up
# Run local container in background
make up-silent
# Run local container in background with prefork
make up-silent-prefork
# Stop container
make stop
# Start container
make start
docker build -t gofiber .
docker run -d -p 3000:3000 gofiber ./app -prodGo to http://localhost:3000:
