KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
subscription-app
★ 20
Open GitHub ↗
Subscription app
Download README (.md)
Explore Similar Repositories
FineFind
:
Enhances your browser with an animation that makes Ctrl+F results more noticeable! MAINLY MANAGED ON CODEBERG https://codeberg.org/LeonsDepot/FineFind. Please open new pull request on Codeberg.
debiSH
:
Debian (10) on iSH-AOK
kernel
:
puppy-rtos kernel
eas-docs-site
:
No description available.
sms
:
A collection of phone number provider wrappers
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
subscription-app
?
Download (.md)
# Subscription App FrontendApp to purchase licenses for n8n. [Production env](https://subscription.n8n.io/) [Staging env](https://staging-subscription.n8n.io/) ## Project Setup ```sh npm install ``` ### Compile and Hot-Reload for Development ```sh npm run dev ``` ### Type-Check, Compile and Minify for Staging ```sh npm run build:test ``` ### Type-Check, Compile and Minify for Production ```sh npm run build:prod ``` ### Run Unit Tests with [Vitest](https://vitest.dev/) ```sh npm run test:unit ``` ### Run End-to-End Tests with [Cypress](https://www.cypress.io/) ```sh 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): ```sh npm run build npm run test:e2e ``` ### Lint with [ESLint](https://eslint.org/) ```sh npm run lint ```