Getting Started
Welcome to the documentation for Nzoni Boilerplate! This guide will walk you through the setup, configuration, and usage of Nzoni, a robust SaaS boilerplate designed to accelerate your web application
Last updated
Welcome to the documentation for Nzoni Boilerplate! This guide will walk you through the setup, configuration, and usage of Nzoni, a robust SaaS boilerplate designed to accelerate your web application
Last updated
Make sure you have node v18+ and npm v10+
Once you've purchased Nzoni, your github email account will be added to the related projects. Make sure you're already connected to github on your cli terminal or use Github Personal access token.
If you haven't installed Node.js yet, you can follow the instructions here.
Navigate to the downloaded Angular project repostiory:
Navigate to the downloaded Nest.js project repostiory:
Nest.js supports environment variables out of the box. You can set defaults in .env (for all environments), .env.development (for development), and .env.production (for production).
By default, there is the .env.example file. Rename it to .env modify variables
Edit src/environments/environnement.ts
To set up the required tables, navigate to the downloaded Nest.js project repostiory and run the following command:
To start Angular project, simply run:
Angular instance is now running at http://localhost:4200/.
To start Nest.js project, simply run:
Nest.js instance is now running at http://localhost:3000/.
Run the following command to start the server:
Node.js instance is now running at http://localhost:3000/.
Congratulations! Your Nzoni project is now running!