Making my first project on django
This repo is dedicated to develop our first project on Django. We are going to build a blog following the instructions on Django 4 by example, book made by Antonio Melé. You cand find him in: Linkedin or Github.
This blog app is part of first unit in our second year of web aplication development grade.
We will use Python virtual enviroments to install the requirements
$ python -m venv .venv --prompt mysite
$ source .venv/bin/activate
$ pip install -r requirements.txt
To implement some functionalities to send mails, a .env
file will be required to keep save some data as passwords or personal mails. It will be used also to some database configuration
To streamline some repetitive processes on terminal we are using Justfile, a handy way to run and save commands. For example, in case of make the migrations of an app in django, instead of using python manage.py makemigrations app
we are using just makemigrations app