-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update redis cache handler to support Next.js 13.5+
- Loading branch information
1 parent
af80a9b
commit b120599
Showing
11 changed files
with
113 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@10up/next-redis-cache-provider": major | ||
--- | ||
|
||
Suport for >= Next.js 13.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
tasks: | ||
- name: Start Redis Stack | ||
init: | | ||
docker-compose pull | ||
command: | | ||
alias redis-cli="docker exec -it redis-stack redis-cli" | ||
echo "Use redis-cli to interact with Redis here." | ||
docker-compose up -d | ||
gp sync-done finished | ||
openMode: split-left | ||
- name: Start dev server | ||
init: npm install | ||
command: npm run dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: "3.9" | ||
services: | ||
redis: | ||
container_name: redis-stack | ||
image: redis/redis-stack:latest | ||
ports: | ||
- "6379:6379" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.