This is a blog app Instagram Clone project based on the Python framework Django, with a Postgres DB managed by AWS RDS, the statics and the media files are being served from AWS S3. You can see live on Heroku at: https://django-blog-server.herokuapp.com/
# To run locally
# Create the virtual Environment and install the dependencies
python3 -m venv .env
source .env/bin/activate
pip install -r requirements.txt
# Make the migrations
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
Author: Norberto Moreno | 2020