this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 63 lines 1.8 kB view raw
1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "type": "object", 4 "properties": { 5 "entrypoint": { 6 "description": "The file that smallweb will run", 7 "type": "string" 8 }, 9 "root": { 10 "description": "The root directory of the project", 11 "type": "string" 12 }, 13 "private": { 14 "description": "Protect all routes behind authentication", 15 "type": "boolean" 16 }, 17 "privateRoutes": { 18 "description": "Make specific routes private", 19 "type": "array", 20 "items": { 21 "type": "string" 22 } 23 }, 24 "publicRoutes": { 25 "description": "Make specific routes public", 26 "type": "array", 27 "items": { 28 "type": "string" 29 } 30 }, 31 "crons": { 32 "description": "Cron jobs", 33 "type": "array", 34 "items": { 35 "type": "object", 36 "required": [ 37 "schedule", 38 "args" 39 ], 40 "properties": { 41 "schedule": { 42 "description": "Cron schedule", 43 "type": "string" 44 }, 45 "args": { 46 "description": "Cron arguments", 47 "type": "array", 48 "items": { 49 "type": "string" 50 } 51 } 52 } 53 } 54 }, 55 "labels": { 56 "description": "Labels for the project", 57 "type": "object", 58 "additionalProperties": { 59 "type": "string" 60 } 61 } 62 } 63}