Project for a supermarket using Django and Streamlit
-
Criar venv e instalar os req
- python -m venv super
- source super/bin/activate (no windows: super\Scripts\activate.bat)
- pip install django
- pip install streamlit
- pip install djangorestframework
-
Iniciar projeto django
- django-admin startproject core .
- python manage.py migrate
-
Criar super user do django
- python manage.py createsuperuser
-
Define data structure of the project
-
Create the app
- python manage.py startapp market
-
Create the models
-
Migrate models
-
Create URLs - Views - Serializerss
-
Paginação
-
Create streamlit with the views