Personal blog (Golang, Fiber)

Dmitriy Gnatenko c5336704b5 Update local Docker hai 3 días
build 02a92017e3 Refactoring hai 2 meses
cmd 02a92017e3 Refactoring hai 2 meses
init 02a92017e3 Refactoring hai 2 meses
internal 02a92017e3 Refactoring hai 2 meses
migrations a4f9e0fdf5 Update migrations hai 1 ano
web 013e124261 Add logout hai 1 ano
.gitignore cfd6f0f4f1 Update services hai 1 ano
Makefile 02a92017e3 Refactoring hai 2 meses
docker-compose.yml c5336704b5 Update local Docker hai 3 días
go.mod 02a92017e3 Refactoring hai 2 meses
go.sum 02a92017e3 Refactoring hai 2 meses
readme.md c5336704b5 Update local Docker hai 3 días

readme.md

Config example

.env

# APP
APP_PORT=8080

# CORS
CORS_ALLOW_ORIGIN=*
CORS_ALLOW_METHODS=GET,POST,PUT,DELETE

# DB
DB_DRIVER=mysql
DB_HOST=localhost
DB_PORT=1111
DB_NAME=db
DB_USER=user
DB_PASSWORD=pass
DB_SSL_MODE=disable
DB_MAX_OPEN_CONNS=0
DB_MAX_IDLE_CONNS=0
DB_MAX_OPEN_CONN_LIFETIME=0s
DB_MAX_IDLE_CONN_LIFETIME=0s

# Cache
CACHE_DEFAULT_EXPIRATION=24h
CACHE_CLEANUP_INTERVAL=1h

# SMTP
SMTP_HOST=smtp.ru
SMTP_PORT=2525
SMTP_USER=example@user.ru
SMTP_PASSWORD=pass

# Rate limiter
LOGIN_RATE_LIMITER_MAX_REQUESTS=10
LOGIN_RATE_LIMITER_EXPIRATION=30s	

# JWT
JWT_SECRET_KEY=test_secret
JWT_COOKIE=cookie
JWT_LIFETIME=1h

# Basic auth
BASIC_AUTH_USER=user
BASIC_AUTH_PASSWORD=pass

# Static
STATIC_VERSION=1

# Logger
LOGGER_STDOUT_ENABLED=true
LOGGER_STDOUT_LEVEL=info
LOGGER_STDOUT_ADD_SOURCE=false
LOGGER_EMAIL_ENABLED=true
LOGGER_EMAIL_LEVEL=error
LOGGER_EMAIL_ADD_SOURCE=true
LOGGER_EMAIL_RECIPIENT=info@dmitriygnatenko.ru
LOGGER_EMAIL_SUBJECT=Error from dmitriygnatenko.ru

Commands

  • make run (run application)
  • make test (run tests)
  • make test-cover (test coverage statistics)
  • make lint (run linter)
  • make migration-status (migrations status)
  • make migration-up (apply migrations)
  • make migration-down (rollback migrations)
  • make docker-build (build and run Docker containers)
  • make docker-up (run Docker containers)
  • make docker-down (stop Docker containers)
  • make install-deps (dependencies installation)
  • make app-build (compile application)

Metrics (protected by Basic auth)

/metrics