Skip to content

Latest commit

 

History

History
61 lines (47 loc) · 1.88 KB

README.md

File metadata and controls

61 lines (47 loc) · 1.88 KB

Smart Dental Frontend

This project was generated with Angular CLI version 13.2.6

Get started

Requirements

Clone the repo

git clone https://github.com/marcode24/smart-dental-frontend
cd smart-dental-frontend

Install npm packages

Install the npm packages described in the package.json and verify that it works.

npm install
ng serve -o

Shut it down manually with Ctrl+C

Environments

Name URL PORT
Localhost localhost 4200
Production www.domain.com

Folder Structure

.
├── src
│ ├── app                 # Source code application
│ │ │── auth              # Module for auth feature
│ │ ├── core              # Module as Singleton
│ │ │ ├── components
│ │ │ ├── enums
│ │ │ ├── guards
│ │ │ ├── interceptors
│ │ │ ├── interfaces
│ │ │ ├── models
│ │ │ ├── services
│ │ │ └── utils
│ │ ├── features          # Module for features which compose the application
│ │ ├── shared            # Module for components shared between application modules
│ │ │ ├── components
│ ├── assets              # Styles, images, icons, fonts etc
│ ├── environments        # Config by environment (localhost and production)
│ └── styles              # Global styles
└── README.md