commit a143e17df46e41f5a7555afdcd968eaea3c744b5 Author: Tercio da Silva Ferreira Date: Thu May 14 23:31:30 2026 -0300 1st commit diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..e69de29 diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..96982b3 --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webapp.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/polls/__init__.py b/polls/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/polls/__pycache__/__init__.cpython-314.pyc b/polls/__pycache__/__init__.cpython-314.pyc new file mode 100644 index 0000000..11e6841 Binary files /dev/null and b/polls/__pycache__/__init__.cpython-314.pyc differ diff --git a/polls/__pycache__/admin.cpython-314.pyc b/polls/__pycache__/admin.cpython-314.pyc new file mode 100644 index 0000000..666003d Binary files /dev/null and b/polls/__pycache__/admin.cpython-314.pyc differ diff --git a/polls/__pycache__/apps.cpython-314.pyc b/polls/__pycache__/apps.cpython-314.pyc new file mode 100644 index 0000000..4880309 Binary files /dev/null and b/polls/__pycache__/apps.cpython-314.pyc differ diff --git a/polls/__pycache__/models.cpython-314.pyc b/polls/__pycache__/models.cpython-314.pyc new file mode 100644 index 0000000..b2d12db Binary files /dev/null and b/polls/__pycache__/models.cpython-314.pyc differ diff --git a/polls/__pycache__/urls.cpython-314.pyc b/polls/__pycache__/urls.cpython-314.pyc new file mode 100644 index 0000000..bbe1f95 Binary files /dev/null and b/polls/__pycache__/urls.cpython-314.pyc differ diff --git a/polls/__pycache__/views.cpython-314.pyc b/polls/__pycache__/views.cpython-314.pyc new file mode 100644 index 0000000..2332a03 Binary files /dev/null and b/polls/__pycache__/views.cpython-314.pyc differ diff --git a/polls/admin.py b/polls/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/polls/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/polls/apps.py b/polls/apps.py new file mode 100644 index 0000000..d0f109e --- /dev/null +++ b/polls/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class PollsConfig(AppConfig): + name = 'polls' diff --git a/polls/migrations/__init__.py b/polls/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/polls/migrations/__pycache__/__init__.cpython-314.pyc b/polls/migrations/__pycache__/__init__.cpython-314.pyc new file mode 100644 index 0000000..62f4f43 Binary files /dev/null and b/polls/migrations/__pycache__/__init__.cpython-314.pyc differ diff --git a/polls/models.py b/polls/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/polls/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/polls/tests.py b/polls/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/polls/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/polls/urls.py b/polls/urls.py new file mode 100644 index 0000000..c08c2df --- /dev/null +++ b/polls/urls.py @@ -0,0 +1,7 @@ +from django.urls import path +from polls import views + +urlpatterns = [ + path('index', views.index, name='index'), + path('ola', views.ola, name='ola') +] \ No newline at end of file diff --git a/polls/views.py b/polls/views.py new file mode 100644 index 0000000..6d41dd0 --- /dev/null +++ b/polls/views.py @@ -0,0 +1,10 @@ +from django.shortcuts import render + +# Create your views here. +from django.http import HttpResponse + +def index(request): + return render(request, 'index.html') + +def ola(request): + return HttpResponse("Olá !!") diff --git a/templates/_base.html b/templates/_base.html new file mode 100644 index 0000000..d01f779 --- /dev/null +++ b/templates/_base.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..bc1ff47 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,12 @@ + + + + + + ENQUETE + + +

Bem vindos ao sistema de Enquetes

+ + + \ No newline at end of file diff --git a/webapp/__init__.py b/webapp/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/webapp/__pycache__/__init__.cpython-314.pyc b/webapp/__pycache__/__init__.cpython-314.pyc new file mode 100644 index 0000000..064aef9 Binary files /dev/null and b/webapp/__pycache__/__init__.cpython-314.pyc differ diff --git a/webapp/__pycache__/settings.cpython-314.pyc b/webapp/__pycache__/settings.cpython-314.pyc new file mode 100644 index 0000000..7eb54ba Binary files /dev/null and b/webapp/__pycache__/settings.cpython-314.pyc differ diff --git a/webapp/__pycache__/urls.cpython-314.pyc b/webapp/__pycache__/urls.cpython-314.pyc new file mode 100644 index 0000000..0e94e4e Binary files /dev/null and b/webapp/__pycache__/urls.cpython-314.pyc differ diff --git a/webapp/__pycache__/wsgi.cpython-314.pyc b/webapp/__pycache__/wsgi.cpython-314.pyc new file mode 100644 index 0000000..21cdde2 Binary files /dev/null and b/webapp/__pycache__/wsgi.cpython-314.pyc differ diff --git a/webapp/asgi.py b/webapp/asgi.py new file mode 100644 index 0000000..341dfea --- /dev/null +++ b/webapp/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for webapp project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/6.0/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webapp.settings') + +application = get_asgi_application() diff --git a/webapp/settings.py b/webapp/settings.py new file mode 100644 index 0000000..65da3f8 --- /dev/null +++ b/webapp/settings.py @@ -0,0 +1,118 @@ +""" +Django settings for webapp project. + +Generated by 'django-admin startproject' using Django 6.0.5. + +For more information on this file, see +https://docs.djangoproject.com/en/6.0/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/6.0/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/6.0/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure--2x$1l!(s4-=vxa*ja1upc%=f9@gmw+z5r7t+�h(+re5cw3b' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'polls.apps.PollsConfig', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'webapp.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': ['templates'], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'webapp.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/6.0/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/6.0/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/6.0/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/6.0/howto/static-files/ + +STATIC_URL = 'static/' diff --git a/webapp/urls.py b/webapp/urls.py new file mode 100644 index 0000000..67c30f0 --- /dev/null +++ b/webapp/urls.py @@ -0,0 +1,23 @@ +""" +URL configuration for webapp project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/6.0/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('', include('polls.urls')), +] diff --git a/webapp/wsgi.py b/webapp/wsgi.py new file mode 100644 index 0000000..190e835 --- /dev/null +++ b/webapp/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for webapp project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/6.0/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webapp.settings') + +application = get_wsgi_application()