Kill3rbee / teast-django

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized Django application

Docker plus Django plus Codefresh

This is an example Python application that uses Django, pip and Docker. It is packaged using Codefresh.

More details can be found in the documentation page.

Instructions

To install dependencies

pip install -r requirements.txt 

To run tests

python -m unittest composeexample.utils

To run the webapp manually

python manage.py runserver 0.0.0.0:8000

....and navigate your browser to http://localhost:8000/

To create a docker image

docker build -t django-app .

To run the docker image

docker run -p 8000:8000 django-app

To use this project in Codefresh

There is also a codefresh.yml for easy usage with the Codefresh CI/CD platform.

Enjoy!

About


Languages

Language:Python 94.5%Language:Dockerfile 5.5%