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
- Host: GitHub
- URL: https://github.com/ryan-menezes/dentist-office
- Owner: Ryan-Menezes
- License: mit
- Created: 2022-03-14T00:09:57.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-17T00:17:14.000Z (about 4 years ago)
- Last Synced: 2025-03-05T02:41:44.515Z (over 1 year ago)
- Topics: backend, css, express, html, javascript, mysql, nodejs, sass, sequelize
- Language: JavaScript
- Homepage:
- Size: 160 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```