Nzoni docs
  • Getting Started
  • Angular
    • Project Structure
    • Authentication, Magic Link and Google Auth
    • Landing page
    • Payments and Plans
    • Blog and articles
    • User Dashboard
    • Admin Dashboard
    • SEO & SSR
    • Deploy Angular Project
  • Nest.js
    • Project Structure
    • Authentication, Google auth and Magic link
    • Blogposts
    • Plans
    • Stripe Payment
    • Email and Templates
    • Database and Migration
    • Image File upload
    • Users
    • Deploy Nest.js project
  • Node.js/MongoDB
    • Project structure
    • API endpoints
  • Angular / Firebase / Node.js
  • Create first and default plan
  • Create an Admin User
  • Support
  • Licenses
Powered by GitBook
On this page
  1. Angular

Project Structure

In this chapter, we will go through the structure of the Angular project from Nzoni boilerplate and give you an overview of how modules and components are structured.

It's seamlessly integrated with TailwinCSS, API connection and Stripe.

├── node_modules
├── src
│   ├── app                    # Application logic
│   ├── assets                 
│   ├── environments           # Environment variables
│   │  ├── environment.prod.ts # for production
│   │  ├── environment.ts      # for local
│   ├── favicon.ico
│   ├── index.html         
│   ├── main.server.ts.     # SSR main file
│   ├── main.ts             # 
│   ├── robots.txt          
│   ├── styles.scss         # Styling
├── .gitignore
├── .editorconfig           # WYSIWYG config
├── angular.json            # Angular config
├── package.json
├── server.ts.              # SSR logic
├── README.md
├── tailwind.config.ts      # Tailwind configuration
├── tsconfig.json           # TypeScript configuration 
├── tsconfig.server.json    # SSR tsonfig configuration
└── tsconfig.app.json       # App tsconfig
PreviousAngularNextAuthentication, Magic Link and Google Auth

Last updated 7 months ago