fix: update license information to GNU GPL v3 in README, package.json, and package-lock.json
fix: Add valkey to compose in case system is too old for DragonflyDB
This commit is contained in:
@@ -494,7 +494,7 @@ curl "https://your-bbb-server/bigbluebutton/api/getMeetings?checksum=..."
|
|||||||
|
|
||||||
## 📝 License
|
## 📝 License
|
||||||
|
|
||||||
This project is licensed under the MIT License - see [LICENSE](LICENSE) file for details.
|
This project is licensed under the GNU GPL v3 (or later) - see [LICENSE](LICENSE) file for details.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
17
compose.yml
17
compose.yml
@@ -46,9 +46,26 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
|
|
||||||
|
# Use valkey, if your system is too old for DragonflyDB
|
||||||
|
# valkey:
|
||||||
|
# image: valkey/valkey:9
|
||||||
|
# restart: unless-stopped
|
||||||
|
# ulimits:
|
||||||
|
# memlock: -1
|
||||||
|
# volumes:
|
||||||
|
# - valkeydata:/data
|
||||||
|
# healthcheck:
|
||||||
|
# test: ["CMD", "redis-cli", "-p", "6379", "ping"]
|
||||||
|
# interval: 5s
|
||||||
|
# timeout: 5s
|
||||||
|
# retries: 5
|
||||||
|
# networks:
|
||||||
|
# - backend
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
pgdata:
|
pgdata:
|
||||||
dragonflydata:
|
dragonflydata:
|
||||||
|
#valkeydata:
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
frontend:
|
frontend:
|
||||||
|
|||||||
1
package-lock.json
generated
1
package-lock.json
generated
@@ -7,6 +7,7 @@
|
|||||||
"": {
|
"": {
|
||||||
"name": "redlight",
|
"name": "redlight",
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.7.0",
|
"axios": "^1.7.0",
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
"name": "redlight",
|
"name": "redlight",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
"license": "GPL-3.0-or-later",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "concurrently -n client,server -c blue,green \"vite\" \"node --watch server/index.js\"",
|
"dev": "concurrently -n client,server -c blue,green \"vite\" \"node --watch server/index.js\"",
|
||||||
|
|||||||
Reference in New Issue
Block a user