Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marcode24/smart-dental-frontend

🦷 This application allows you to manage a dental clinic, it allows you to guide a history of the patient, manage the appointments, inventory, employees and patients.
https://github.com/marcode24/smart-dental-frontend

angular bootstrap css dental dental-clinic frontend html javascript responsive typescript web-application webapp

Last synced: 30 days ago
JSON representation

🦷 This application allows you to manage a dental clinic, it allows you to guide a history of the patient, manage the appointments, inventory, employees and patients.

Awesome Lists containing this project

README

        

# Smart Dental Frontend

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.6

## Get started

### Requirements

- [Visual Studio Code](https://code.visualstudio.com/)
- [Git](https://git-scm.com/downloads)
- [NodeJs](https://nodejs.org/en/)
- [Npm](https://www.npmjs.com/)
- [Angular CLI](https://angular.io/cli)

### Clone the repo

```shell
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.

```shell
npm install
ng serve -o
```

Shut it down manually with `Ctrl+C`

## Environments

| Name | URL | PORT |
| ---------- | ---------------------------------------- | ---- |
| Localhost | [localhost](http://localhost:4200) | 4200 |
| Production | [www.domain.com](https://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