Release v0.3 - Add Redis support #82

Merged
lamacchinadesiderante merged 9 commits from develop into main 2024-05-18 11:35:07 +00:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit 4f15f44e12 - Show all commits

8
.env.example Normal file
View File

@ -0,0 +1,8 @@
# enable content cache (less server api calls)
ENABLE_REDIS=true
# if cache enabled, sets redis url for Docker network (see docker-compose.yaml)
REDIS_URL='redis://redis:6379'
# if cache enabled, set redis url for external redis
# REDIS_URL='redis://127.0.0.1:6379'

3
.gitignore vendored
View File

@ -34,3 +34,6 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts
# local .env
.env