given files
This commit is contained in:
parent
9bf88844e9
commit
a2c31f873d
48 changed files with 10458 additions and 0 deletions
1
server/config/default-canvas-250.txt
Normal file
1
server/config/default-canvas-250.txt
Normal file
File diff suppressed because one or more lines are too long
BIN
server/config/default-canvas-50.txt
Normal file
BIN
server/config/default-canvas-50.txt
Normal file
Binary file not shown.
54
server/config/rate-limits.config.json
Normal file
54
server/config/rate-limits.config.json
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
{
|
||||
"testsLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"getCanvasLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"getPixelLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"placePixelLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 30
|
||||
},
|
||||
"getRoomsLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"getRoomConfigLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"createRoomLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 300
|
||||
},
|
||||
"updateRoomLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 1
|
||||
},
|
||||
"deleteRoomLimiter": {
|
||||
"limit": 2,
|
||||
"interval": 1
|
||||
},
|
||||
"getStudentLimiter": {
|
||||
"limit": 10,
|
||||
"interval": 1
|
||||
},
|
||||
"updateStudentLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 1
|
||||
},
|
||||
"sendMessageLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 1
|
||||
},
|
||||
"reportRoomLimiter": {
|
||||
"limit": 1,
|
||||
"interval": 5
|
||||
}
|
||||
}
|
||||
46
server/config/rooms.config.json
Normal file
46
server/config/rooms.config.json
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"maxRoomsCreatedPerUser": 3,
|
||||
"rooms": {
|
||||
"default": {
|
||||
"metadata": {
|
||||
"name": "default room",
|
||||
"slug": "default",
|
||||
"description": "default room",
|
||||
"canvasDimensions": 50,
|
||||
"iconURL": "https://media.tenor.com/XUHq8pN_maQAAAAi/puffer-fish-fish.gif",
|
||||
"isPublic": false
|
||||
},
|
||||
"settings": {
|
||||
"roomColors": "#ffffff,#d4d7d9,#898d90,#515252,#000000,#fe4500,#fea800,#fed634,#01a268,#7eed56,#2350a4,#3690ea,#51e9f4,#811f9f,#b44bc0,#ff99aa,#9c6925",
|
||||
"defaultCanvas": "config/default-canvas-50.txt"
|
||||
}
|
||||
},
|
||||
"epi-place": {
|
||||
"metadata": {
|
||||
"name": "epi/place",
|
||||
"slug": "epi-place",
|
||||
"description": "Le Roi de la malice est passé par là",
|
||||
"canvasDimensions": 250,
|
||||
"iconURL": "https://media.tenor.com/XUHq8pN_maQAAAAi/puffer-fish-fish.gif",
|
||||
"isPublic": true
|
||||
},
|
||||
"settings": {
|
||||
"roomColors": "#ffffff,#d4d7d9,#898d90,#515252,#000000,#6c001a,#be0039,#fe4500,#fea800,#fed634,#fff8b8,#01a268,#00cc78,#7eed56,#02756f,#019eaa,#00ccbf,#2350a4,#3690ea,#51e9f4,#493ac1,#6a5cff,#94b3ff,#811f9f,#b44bc0,#e4aaff,#de107f,#ff3981,#ff99aa,#6d482f,#9c6925,#ffb470,#811f9f,#000000",
|
||||
"defaultCanvas": "config/default-canvas-250.txt"
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"metadata": {
|
||||
"name": "Test Room",
|
||||
"description": "A room small enough to test things out",
|
||||
"canvasDimensions": 10,
|
||||
"iconURL": "https://media.tenor.com/XUHq8pN_maQAAAAi/puffer-fish-fish.gif",
|
||||
"slug": "test",
|
||||
"isPublic": true
|
||||
},
|
||||
"settings": {
|
||||
"roomColors": "#ffffff,#d4d7d9,#898d90,#515252,#000000,#fe4500,#fea800,#fed634,#01a268,#7eed56,#2350a4,#3690ea,#51e9f4,#811f9f,#b44bc0,#ff99aa,#9c6925"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue