Postgram is a web post project inspired on IG, to show django proficiency. Want to watch how Postgram works? I record a youtube video :) Follow the link ----> https://youtu.be/zuA-pkU12QM
- Python
- Django
- HTML
- CSS
- Git
- db.dqlite3
The sqlite3 db is used only for programing purposes, not for production.
Postgram requires Django v3+ to run.
For no virtual environments.... Install the dependencies and devDependencies and start the server.
$ cd postgram
$ pip install -r requirements.txt
$ python3 manage.py runserver
For virtual environments.... Start the virtual environments before intaling the dependencies and running the server.
$ cd postgram
$ sudo apt-get venv
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ python3 manage.py runserver
Follow the link to my youtube video where it is shown: https://youtu.be/zuA-pkU12QM
MIT
Free Software, Hell Yeah!