Socket
Socket
Sign inDemoInstall

ceretro

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ceretro

Ceretro is a live-editing app for Sprint Retrospectives.


Version published
Weekly downloads
4
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

Ceretro - Live Sprint Retro App

Ceretro is a live-editing app for Sprint Retrospectives.

Usage

To use Ceretro, you'll need a DB with a migrations table with the following schema:

CREATE TABLE `migrations` (
  `file` VARCHAR(255) NOT NULL,
  `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`file`));

Then, to run Ceretro, simply import and call Ceretro with mysql credentials and a user method to retrieve the User based on the Express Request/Response.

import { Ceretro } from "ceretro"

Ceretro({
  admins: {
    groups: ["some group"],
    users: ["some user id"],
  },

  mysql: {
    database: "<SOME_DB>",
    host: "<SOME_HOST>",
    password: "<SOME_PASSWORD>",
    user: "<SOME_USER>",
  },

  user: (req: Request, res: Response) =>
    Promise.resolve({ id: "some_id" }),
})

Development

First you'll need to build and run the Ceretro backend:

npm run server:build
npm run server:run

Then you can start the frontend development server

PROXY_HOST="http://<HOST>:23720" npm run client:watch

FAQs

Package last updated on 19 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc