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

https://github.com/ryan-menezes/dentist-office

Manager for a dentist office
https://github.com/ryan-menezes/dentist-office

backend css express html javascript mysql nodejs sass sequelize

Last synced: 2 months ago
JSON representation

Manager for a dentist office

Awesome Lists containing this project

README

          

# dentist-office
Manager for a dentist office
## Settings
Have [Node.js](https://nodejs.org/pt-br/) installed on your machine and through your terminal enter the project directory and run the command "npm update":
```sh
cd "project directory"
npm update
```
After these initial settings, again in the terminal run the following commands to create the database and its tables (make sure your MySQL is activated):
```sh
npx sequelize db:create
npx sequelize db:migrate
npx sequelize db:seed:all
```
Finally, start the node.js server with the command "nodemon start" in a separate terminal:
```sh
cd "project directory"
nodemon start
```