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
Download repositories
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.
Download Angular repository
Download Nest.js repository
Download Node.js repository
Installation
Install Node.js (if you haven't already)
If you haven't installed Node.js yet, you can follow the instructions here.
Install Node Modules for Angular project
Navigate to the downloaded Angular project repostiory:
Install Node Modules for Nest.js project
Navigate to the downloaded Nest.js project repostiory:
Configure Environment Variables
Nest.js environnement
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
Angular Environnement
Edit src/environments/environnement.ts
Create Tables
To set up the required tables, navigate to the downloaded Nest.js project repostiory and run the following command:
Run
Angular
To start Angular project, simply run:
Angular instance is now running at http://localhost:4200/.
Nest.js
To start Nest.js project, simply run:
Nest.js instance is now running at http://localhost:3000/.
Node.js/MongoDB
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!
Last updated