Self hosting serverless cron⌛
    Self hosting serverless cron⌛
    • Project
      • Create Project
        POST
      • Update Project
        PUT
      • Get Projects
        GET
    • Schedules
      • Create Schedule
        POST
      • Get All Schedules
        GET
      • Update Schedule
        PUT
      • Delete Schedule
        DELETE
    • Schemas
      • tbl_projects
      • tbl_schedules

    tbl_projects

    The tbl_projects table contains details of various projects, including a unique ID, project name, a secret key for authentication, and timestamps for when each project was created and last updated.

    {
        "id": 0,
        "name": "string",
        "secretKey": "string",
        "createdAt": 0,
        "updatedAt": 0
    }
    Built with