A simple image hosting application written in Django.
-
Fork/Clone
-
Create and activate a virtual environment:
$ python3 -m venv venv && source venv/bin/activate
-
Install the requirements:
(venv)$ pip install -r requirements.txt
-
Apply the migrations:
(venv)$ python manage.py migrate
-
Run the server:
(venv)$ python manage.py runserver
-
Navigate to https://localhost:8000/ in your favorite web browser.