Skip to content

A simple webapp for managing places. Developed with Python, Django DRF, SQLite.

Notifications You must be signed in to change notification settings

ThanKarab/PlacesManagementWebApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Places Management WebApp

A simple webapp for managing places. Developed with Python, Django DRF, SQLite.

Installation

  1. Install docker.

  2. Build the image:

    docker build -t places .
    
  3. Start the container:

    docker run -d -p 8000:8000 --name app places
    
  4. Create a superuser to be able to access the admin panel:

    docker exec -it app python manage.py createsuperuser
    
  5. (Optional) Start the container with volume to persist data:

    docker run -d -p 8000:8000 -v /home/db:/opt/db --name app places
    
  6. (Optional) Run the tests:

    docker exec -it app poetry run python manage.py test
    
  7. Happy reviewing at http://127.0.0.1:8000/admin !

About

A simple webapp for managing places. Developed with Python, Django DRF, SQLite.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published