Using Python Django framework and MySQL database, this app allow to manage posts (title, description, date creation and time creation), displying them on the frontend.
Python version: 3.7.1
Django version: 2.1.4
Template engine: Jinja
CSS framework: Materialize
Database: Mysql
First, clone the repository to your local machine:
git clone https://github.com/nlsnmr/python3-crud.git
Create enviroment and activate:
virtualenv . && . bin/activate
Install the requirements:
pip install -r requirements.txt
Setup the local configurations:
cp .env.example .env
Create the database:
python manage.py migrate
Finally, run the development server:
python manage.py runserver
The app will be available at 127.0.0.1:8000