Skip to content

Commit 4315696

Browse files
authored
Merge pull request #1 from ucfopen/redis
Redis queue support
2 parents 4a022c8 + 4126a2b commit 4315696

File tree

6 files changed

+277
-27
lines changed

6 files changed

+277
-27
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# If you're using Redis, enter the URL below (e.g. redis://127.0.0.1:6379)
2+
REDIS_URL=

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
node_modules/
2-
.DS_Store
2+
.DS_Store
3+
dist/
4+
.env

package-lock.json

Lines changed: 174 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
"description": "",
1616
"dependencies": {
1717
"async-mutex": "^0.5.0",
18+
"dotenv": "^17.2.3",
1819
"express": "^4.21.2",
20+
"ioredis": "^5.8.2",
1921
"jsdom": "^26.0.0",
2022
"puppeteer": "^24.2.1"
2123
},

0 commit comments

Comments
 (0)