https://github.com/artodeschini/appointmentnodemongo
https://github.com/artodeschini/appointmentnodemongo
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/artodeschini/appointmentnodemongo
- Owner: artodeschini
- Created: 2022-08-19T01:55:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-20T00:26:30.000Z (almost 4 years ago)
- Last Synced: 2025-03-06T05:46:00.760Z (over 1 year ago)
- Language: JavaScript
- Size: 339 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sistema de Agendamentos
## Requisitos
* MongoDB
* Node
* Express
* EJS
* Bootstrap 5
* jQuery
* FullCallendar
[Bootstrap](https://getbootstrap.com/)
[fullCalendar](https://fullcalendar.io/)
[jQuery](https://code.jquery.com/)
[mailtrap fake email](https://mailtrap.io/)
## npm dependencies
```bash
npm init
npm install mongoose --save
npm install express --save
npm install ejs --save
npm install body-parser --save
npm instal nodemailer --save
```
## donwload install jQuery
```bash
cd public
curl -G https://code.jquery.com/jquery-3.6.0.min.js -o jquery-3.6.0.min.js
```
## docker mongo
```bash
docker run --name mongo -p 27017:27017 -d mongo
docker start mongo;
docker stop mongo;
```