Em português | Introdução | Passo a Passo | Recursos
In English | Introduction | Step by Step | Resources
- Documentação prática para aprender e revisar os fundamentos do framework Django.
Este tutorial foi desenvolvido para consolidar os conhecimentos adquiridos sobre Django, cobrindo desde a instalação até a estruturação de uma aplicação web funcional.
- Configuração de Ambiente Virtual (
venv). - Estrutura de Pastas e Arquivos.
- Comandos Essenciais (
manage.py). - Integração com HTML/CSS.
- Instalação:
pip install django - Criação do Projeto:
django-admin startproject nome_projeto - Servidor:
python manage.py runserver
...aprendizado baseado nas aulas da ETEC Alberto Feres e documentação oficial.
- Practical documentation for learning and reviewing the fundamentals of the Django framework.
This tutorial was developed to consolidate the knowledge acquired about Django, covering everything from installation to the structuring of a functional web application.
- Virtual Environment Configuration (
venv). - Folder and File Structure.
- Essential Commands (
manage.py). - HTML/CSS Integration.
- Installation:
pip install django - Project Creation:
django-admin startproject project_name - Server:
python manage.py runserver
...learning based on classes at ETEC Alberto Feres and official documentation.