From 81fe6c0a5473f4903f3fcb61a9dabad82be2901a Mon Sep 17 00:00:00 2001 From: Michele de Barros Santos Date: Mon, 9 Oct 2023 20:35:51 -0300 Subject: [PATCH] feat: configurando deploy --- .gitignore | 165 ++++++++++++++++++++++++++++++++++++++++++- Procfile | 1 + hashflix/settings.py | 11 ++- requirements.txt | 11 +++ runtime.txt | 1 + 5 files changed, 186 insertions(+), 3 deletions(-) create mode 100644 Procfile create mode 100644 requirements.txt create mode 100644 runtime.txt diff --git a/.gitignore b/.gitignore index a295864..d32deb3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,163 @@ -*.pyc -__pycache__ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + +planejamento.txt +desktop.ini \ No newline at end of file diff --git a/Procfile b/Procfile new file mode 100644 index 0000000..7a06120 --- /dev/null +++ b/Procfile @@ -0,0 +1 @@ +web: python manage.py migrate && gunicorn filme:wsgi --log-file - \ No newline at end of file diff --git a/hashflix/settings.py b/hashflix/settings.py index 58e4f58..16120f7 100644 --- a/hashflix/settings.py +++ b/hashflix/settings.py @@ -10,6 +10,7 @@ https://docs.djangoproject.com/en/4.2/ref/settings/ """ +import dj_database_url from pathlib import Path import os @@ -26,7 +27,7 @@ # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True -ALLOWED_HOSTS = [] +ALLOWED_HOSTS = ['*'] # Application definition @@ -45,6 +46,7 @@ MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', + "whitenoise.middleware.WhiteNoiseMiddleware", 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.common.CommonMiddleware', 'django.middleware.csrf.CsrfViewMiddleware', @@ -87,6 +89,13 @@ } } +DATABASE_URL = os.getenv("DATABASE_URL") + +if DATABASE_URL: + DATABASES = { + 'default': dj_database_url.config(default=DATABASE_URL, conn_max_age=1800) + } + # Password validation # https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..bcbecca --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +asgiref==3.7.2 +dj-database-url==2.1.0 +Django==4.2.5 +gunicorn==21.2.0 +packaging==23.2 +Pillow==10.0.0 +psycopg2==2.9.9 +sqlparse==0.4.4 +typing_extensions==4.7.1 +tzdata==2023.3 +whitenoise==6.5.0 diff --git a/runtime.txt b/runtime.txt new file mode 100644 index 0000000..333d904 --- /dev/null +++ b/runtime.txt @@ -0,0 +1 @@ +python-3.10.0 \ No newline at end of file