Skip to content

Commit 714e1c0

Browse files
authored
Merge pull request #31 from davevad93/updates
Update files
2 parents 500675d + 048371a commit 714e1c0

File tree

7 files changed

+37
-16
lines changed

7 files changed

+37
-16
lines changed

README.es.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.3-darkgreen.svg)
1+
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.9-darkgreen.svg)
22

33
![Homepage](screenshots//countries.JPG)
44

55
## - Introducción -
66

7-
**Rest Countries Info APP** es un pequeño proyecto construido con Django que utiliza la [API de REST Countries](https://restcountries.com/) y la [API de Wikipedia](https://www.mediawiki.org/wiki/API:Main_page) para visualizar informaciones detalladas de los países del mundo. Este proyecto se ha desarrollado con Python 3.12, JavaScript, Bootstrap 5, HTML5 y CSS3. Es el primer proyecto que subo a Github y el primero en general desarrollado con Django así que es posible que hayan errores, por lo cual cualquier aportación o consejo será bienvenido.
8-
7+
**Rest Countries Info APP** es un pequeño proyecto construido con Django que utiliza la [API de REST Countries](https://restcountries.com/) y la [API de Wikipedia](https://www.mediawiki.org/wiki/API:Main_page) para visualizar informaciones detalladas de los países del mundo. Este proyecto se ha desarrollado con Python 3.12, JavaScript, Bootstrap 5, HTML5 y CSS3.
98
## - Requisitos -
109

1110
Asegúrate de tener Python instalado en tu sístema, para comprobarlo abre la línea de comandos y ejecuta el siguiente comando:

README.it.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.3-darkgreen.svg)
1+
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.9-darkgreen.svg)
22

33
![Homepage](screenshots//countries.JPG)
44

55
## - Introduzione -
66

7-
**Rest Countries Info APP** è un piccolo progetto costruito con Django che utilizza la [API di REST Countries](https://restcountries.com/) e la [API di Wikipedia](https://www.mediawiki.org/wiki/API:Main_page) per visualizzare le informazioni dettagliate dei paesi del mondo. Questo progetto è stato fatto con Python 3.12, JavaScript, Bootstrap 5, HTML5 e CSS3. È il primo progetto che carico su GitHub e il primo in assoluto che ho sviluppato con Django, quindi protrebbero esserci degli errori, pertanto qualsiasi contributo o consiglio è ben accetto.
7+
**Rest Countries Info APP** è un piccolo progetto costruito con Django che utilizza la [API di REST Countries](https://restcountries.com/) e la [API di Wikipedia](https://www.mediawiki.org/wiki/API:Main_page) per visualizzare le informazioni dettagliate dei paesi del mondo. Questo progetto è stato sviluppato con Python 3.12, JavaScript, Bootstrap 5, HTML5 e CSS3.
88

99
## - Requisiti -
1010

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.3-darkgreen.svg)
1+
# Rest Countries Info APP [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) ![Python](https://img.shields.io/badge/python-3.12-blue.svg) ![Django](https://img.shields.io/badge/django-5.0.9-darkgreen.svg)
22

33
![Homepage](screenshots//countries.JPG)
44

55
## - Introduction -
66

7-
**Rest Countries Info APP** is a small Django project that utilizes the [REST Countries API](https://restcountries.com/) and the [Wikipedia API](https://www.mediawiki.org/wiki/API:Main_page) to provide specific information about countries around the world. The project is built using Python 3.12, JavaScript, Bootstrap 5, HTML5, CSS3, and JSON. This is the first project I ever released on GitHub and my first Django project overall so there may be errors, therefore any contribution or advice is welcome.
7+
**Rest Countries Info APP** is a small Django project that utilize [REST Countries API](https://restcountries.com/) and [Wikipedia API](https://www.mediawiki.org/wiki/API:Main_page) to provide specific information about countries around the world. The project is built using Python 3.12, JavaScript, Bootstrap 5, HTML5 and CSS3.
88

99
## - Requirements -
1010

myproject/build.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
# Exit on error
4+
set -o errexit
5+
6+
# Install packages
7+
pip install -r requirements.txt
8+
9+
# Convert static asset files
10+
python manage.py collectstatic --no-input

myproject/build_files.sh

-7
This file was deleted.

myproject/myproject/settings.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,15 @@
2929

3030
# SECURITY WARNING: don't run with debug turned on in production!
3131
DEBUG = False
32-
ALLOWED_HOSTS = ['.onrender.com']
3332

34-
# X-Content-Type-Options
33+
# https://docs.djangoproject.com/en/3.0/ref/settings/#allowed-hosts
34+
ALLOWED_HOSTS = []
35+
36+
RENDER_EXTERNAL_HOSTNAME = os.environ.get('RENDER_EXTERNAL_HOSTNAME')
37+
if RENDER_EXTERNAL_HOSTNAME:
38+
ALLOWED_HOSTS.append(RENDER_EXTERNAL_HOSTNAME)
3539

40+
# X-Content-Type-Options
3641
SECURE_BROWSER_XSS_FILTER = True
3742
SECURE_HSTS_SECONDS = 31536000
3843
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
@@ -55,6 +60,7 @@
5560

5661
MIDDLEWARE = [
5762
'django.middleware.security.SecurityMiddleware',
63+
'whitenoise.middleware.WhiteNoiseMiddleware',
5864
'django.contrib.sessions.middleware.SessionMiddleware',
5965
'django.middleware.common.CommonMiddleware',
6066
'django.middleware.csrf.CsrfViewMiddleware',
@@ -128,6 +134,14 @@
128134

129135
STATIC_URL = '/static/'
130136

137+
# This production code might break development mode, so we check whether we're in DEBUG mode
138+
if not DEBUG:
139+
# Tell Django to copy static assets into a path called `staticfiles` (this is specific to Render)
140+
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
141+
# Enable the WhiteNoise storage backend, which compresses static files to reduce disk use
142+
# and renames the files with unique names for each version to support long-term caching
143+
STATICFILES_STORAGE = 'whitenoise.storage.CompressedManifestStaticFilesStorage'
144+
131145
# Default primary key field type
132146
# https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field
133147

myproject/requirements.txt

+5
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@ asgiref==3.7.2
22
beautifulsoup4==4.12.3
33
certifi==2024.7.4
44
charset-normalizer==3.3.2
5+
click==8.1.7
6+
colorama==0.4.6
57
Django==5.0.9
68
django-bootstrap5==23.4
79
gunicorn==23.0.0
10+
h11==0.14.0
811
idna==3.7
12+
packaging==24.2
913
python-dotenv==1.0.1
1014
pyuca==1.2
1115
requests==2.32.2
1216
soupsieve==2.5
1317
sqlparse==0.5.0
1418
tzdata==2023.4
1519
urllib3==2.2.2
20+
uvicorn==0.32.1
1621
whitenoise==6.8.2
1722
Wikipedia-API==0.6.0

0 commit comments

Comments
 (0)