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.gitCreate enviroment and activate:
virtualenv . && . bin/activateInstall the requirements:
pip install -r requirements.txtSetup the local configurations:
cp .env.example .envCreate the database:
python manage.py migrateFinally, run the development server:
python manage.py runserverThe app will be available at 127.0.0.1:8000
