Skip to content

Commit

Permalink
inicio
Browse files Browse the repository at this point in the history
  • Loading branch information
tunonalves committed Jun 25, 2022
0 parents commit e21a5f0
Show file tree
Hide file tree
Showing 318 changed files with 49,239 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/ProjectFinal-TunonAlves.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"sqltools.connections": [
{
"previewLimit": 50,
"driver": "SQLite",
"database": "${workspaceFolder:ProjectFinal-TunonAlves}/db.sqlite3",
"name": "sql"
}
],
"sqltools.useNodeRuntime": true
}
Empty file added ProyectoWeb/__init__.py
Empty file.
Binary file added ProyectoWeb/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWeb/__pycache__/settings.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWeb/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWeb/__pycache__/wsgi.cpython-310.pyc
Binary file not shown.
159 changes: 159 additions & 0 deletions ProyectoWeb/settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
"""
Django settings for ProyectoWeb project.
Generated by 'django-admin startproject' using Django 2.2.7.
For more information on this file, see
https://docs.djangoproject.com/en/2.2/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/ref/settings/
"""

import os

from django.contrib.messages import constants as mensajes_de_error

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '_53v6ylo8$+&ub*0%(1at3)@&ofd(sloi-i!y1sc%gj(ht0oaj'

# 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',
'ProyectoWebApp',
'servicios',
'blog',
'contacto',
'tienda',
'carro',
'autenticacion',
'crispy_forms',
'pedidos',
]

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 = 'ProyectoWeb.urls'

TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'carro.context_processor.importe_total_carro',
],
},
},
]

WSGI_APPLICATION = 'ProyectoWeb.wsgi.application'


# Database
# https://docs.djangoproject.com/en/2.2/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}


# Password validation
# https://docs.djangoproject.com/en/2.2/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/2.2/topics/i18n/

#LANGUAGE_CODE = 'en-us'
LANGUAGE_CODE = 'es-eu'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/

DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

STATIC_URL = '/static/'

MEDIA_URL='/media/'
MEDIA_ROOT=os.path.join(BASE_DIR, 'media')

# configuración de email

EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
DEFAULT_FROM_EMAIL = '[email protected]'
SERVER_EMAIL = '[email protected]'
EMAIL_HOST_PASSWORD = '#porter1986'

CRISPY_TEMPLATE_PACK="bootstrap4"

MESSAGE_TAGS={
mensajes_de_error.DEBUG: 'debug',
mensajes_de_error.INFO: 'info',
mensajes_de_error.SUCCESS: 'success',
mensajes_de_error.WARNING: 'warning',
mensajes_de_error.ERROR: 'danger',
}
32 changes: 32 additions & 0 deletions ProyectoWeb/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
"""ProyectoWeb URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.2/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 import urls
from django.contrib import admin
from django.urls import path, include



urlpatterns = [
path('admin/', admin.site.urls),
path('servicios/', include('servicios.urls')),
path('blog/', include('blog.urls')),
path('contacto/', include('contacto.urls')),
path('autenticacion/', include('autenticacion.urls')),
path('tienda/', include('tienda.urls')),
path('carro/', include('carro.urls')),
path('pedidos/', include('pedidos.urls')),
path('', include('ProyectoWebApp.urls')),
]
16 changes: 16 additions & 0 deletions ProyectoWeb/wsgi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""
WSGI config for ProyectoWeb 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/2.2/howto/deployment/wsgi/
"""

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ProyectoWeb.settings')

application = get_wsgi_application()
Empty file added ProyectoWebApp/__init__.py
Empty file.
Binary file added ProyectoWebApp/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWebApp/__pycache__/admin.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWebApp/__pycache__/apps.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWebApp/__pycache__/models.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWebApp/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file added ProyectoWebApp/__pycache__/views.cpython-310.pyc
Binary file not shown.
3 changes: 3 additions & 0 deletions ProyectoWebApp/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
5 changes: 5 additions & 0 deletions ProyectoWebApp/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from django.apps import AppConfig


class ProyectowebappConfig(AppConfig):
name = 'ProyectoWebApp'
Empty file.
Binary file not shown.
3 changes: 3 additions & 0 deletions ProyectoWebApp/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
Loading

0 comments on commit e21a5f0

Please sign in to comment.