Skip to content

Achess01/dental-clinic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dental clinic

Web application for managment of a dental clinic. Using Django and Django REST Framework for Backend and React.js for Frontend.

Check project

git clone https://github.com/Achess01/dental-clinic.git
cd dental-clinic

Backend

Build and up project

  docker-compose build
  docker-compose up

Migrate

  docker-compose run web python manage.py migrate

Create super user to start creating more personal

  docker-compose run web python manage.py createsuperuser

Frontend

  cd frontend

Install dependencies

  npm install

Run project

  npm run dev