Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 691 Bytes

steps.md

File metadata and controls

31 lines (21 loc) · 691 Bytes

supermarket

Project for a supermarket using Django and Streamlit

  1. 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
  2. Iniciar projeto django

    • django-admin startproject core .
    • python manage.py migrate
  3. Criar super user do django

    • python manage.py createsuperuser
  4. Define data structure of the project

  5. Create the app

    • python manage.py startapp market
  6. Create the models

  7. Migrate models

  8. Create URLs - Views - Serializerss

  9. Paginação

  10. Create streamlit with the views