Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.27 KB

README.md

File metadata and controls

41 lines (27 loc) · 1.27 KB

What's inside?

This repo uses turborepo as monorepo manager and pnpm as a package manager. It includes the following packages/apps:

Apps and Packages

  • home: a Next.js app that contains Storyflow's landing pages.

  • app: another Next.js app that contains Storyflow's dashboard and widget integration.

  • studio: another Next.js app that contains canvas based WYSIWYG editor.

  • storyflow-widget: a Typescript library that contains Storyflow's widget code.

  • eslint-config-custom: eslint configurations (includes eslint-config-next and eslint-config-prettier)

  • tsconfig: tsconfig.jsons used throughout the monorepo

Each package/app is 100% TypeScript.

Utilities

This turborepo has some additional tools already setup for you:

Build

To build all apps and packages, run the following command:

cd storyflow
pnpm run build

Develop

To develop all apps and packages, run the following command:

cd storyflow
pnpm run dev