Skip to content

carlosribas/medvet

Folders and files

NameName
Last commit message
Last commit date
Feb 26, 2021
Feb 1, 2023
Dec 9, 2018
Sep 30, 2018
Oct 4, 2018
Sep 30, 2018
Feb 2, 2023
Feb 2, 2023
Feb 8, 2023
Feb 8, 2023
Dec 9, 2018
Feb 8, 2023
Jun 6, 2021
Dec 8, 2018
Jun 6, 2021
Feb 8, 2023
Feb 8, 2023
Jun 6, 2021
Jun 6, 2021
Aug 13, 2015
Jun 6, 2021

Repository files navigation

Django MedVet

Build Status codecov

The Django MedVet is an open veterinary system. Features ready to use:

  • Patient and customer record;
  • Consultation management (including exams and vaccines);
  • Payment registration;
  • Reports (vaccine booster list and services not paid).

Image of the MedVet system home page

Installation - local development

1 - Clone Git repository:

git clone https://github.com/carlosribas/medvet.git

2 - Run the app using Docker:

cd medvet
docker-compose up -d --build
docker-compose run web python manage.py migrate
docker-compose run web python manage.py createsuperuser

3- Optionally load some example data in:

Portuguese (you can edit it later by accessing localhost:8000/admin)

docker-compose run web python manage.py loaddata load_initial_data.json

Spanish (you can edit it later by accessing localhost:8000/admin)

docker-compose run web python manage.py loaddata load_initial_data-es_MX.json

4 - Open your browser and type localhost:8000

Docker Cheat Sheet

# stop the service
docker-compose stop

# connect to a running container
docker ps
docker exec -it <container_id> bash