Project based in the Final Degree Project made by @lucasares.
For local development you need to:
- Install MySQL
- Create a MySQL database
- Fill .env with MySQL settings
- Create and execute migrations
- Execute django application
You can find in the following subsections the required steps for doing it.
The step by step is done with DBeaver, but feel free to use any other software you see apropiate.
You can download MySQL via the official website.
pip install pipenv
pipenv install
pipenv shell
MYSQL_ENGINE=django.db.backends.mysql
MYSQL_DATABASE=marketplaces
MYSQL_USER=USER_NAME
MYSQL_PASSWORD=PASSWORD
MYSQL_HOST=localhost
MYSQL_PORT=3306
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
In progress...








