Skip to content

RitAreaSciencePark/lab_dashboard

 
 

Repository files navigation

Wagtail over Django and Postgres with Docker-Compose

General architecture

.
├── **docker-compose-getting-started.yaml**
├── **requirements.txt**
└── django (webapp)
    ├── django
    ├── docs
    ├── extras
    ├── **getting_started_site**
    │   ├── **manage.py**
    │   ├── getting_started_site
    │   │   └── settings
    │   │       └── **base.py**
    │   ├── home
    │   ├── media
    │   └── search
    ├── js_tests
    ├── scripts
    └── tests

Command to start: docker compose -f docker-compose-getting-started.yaml up -d or visual studio Ctrl+Shift+p: Compose up (docker-compose-getting-started.yaml) When the container are up, run: docker exec -itd [django_directory]-webapp-1 python3 django/getting_started_site/manage.py migrate docker exec -itd [django_directory]-webapp-1 python3 django/getting_started_site/manage.py createsuperuser and then:

  1. with the debugger attached: Run and Debug: Puthon Debugger Remote Attach
  2. by terminal: docker exec -itd [django_directory]-webapp-1 python3 django/getting_started_site/manage.py runserver 0.0.0.0:8080

About

A simple dashboard for laboratories. Django/Wagtail based.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Python 96.5%
  • HTML 1.5%
  • JavaScript 0.9%
  • CSS 0.6%
  • Roff 0.5%
  • Makefile 0.0%