๐Ÿ“ฆ n8n-io / subscription-app

Subscription app

โ˜… 15 stars โ‘‚ 25 forks ๐Ÿ‘ 15 watching
๐Ÿ“ฅ Clone https://github.com/n8n-io/subscription-app.git
HTTPS git clone https://github.com/n8n-io/subscription-app.git
SSH git clone git@github.com:n8n-io/subscription-app.git
CLI gh repo clone n8n-io/subscription-app
Loading files...
๐Ÿ“„ README.md

Subscription App

FrontendApp to purchase licenses for n8n.

Production env

Staging env

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Staging

npm run build:test

Type-Check, Compile and Minify for Production

npm run build:prod

Run Unit Tests with Vitest

npm run test:unit

Run End-to-End Tests with Cypress

npm run test:e2e:dev

This runs the end-to-end tests against the Vite development server. It is much faster than the production build.

But it's still recommended to test the production build with test:e2e before deploying (e.g. in CI environments):

npm run build
npm run test:e2e

Lint with ESLint

npm run lint