Skip to content

fabianfalon/pythonizame

 
 

Repository files navigation

Pythonizame Blog

Powered by Django and PostGreSQL

Pre Requisitos

PostGreSQL en MAC:

$[kiubtech] export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/<version>/bin

donde es la versión instalada de PostGreSQL. Ejemplo, para el caso de PostGreSQL v 9.5 sería

$[kiubtech] export PATH=$PATH:/Applications/Postgres.app/Contents/Versions/9.5/bin

Instalación

Paso 1. Clonar repositorio.

$[kiubtech] git clone https://github.com/kiubtech/pythonizame.git

Paso 2. Instalar requerimientos

$[kiubtech] cd pythonizame/requirements
$[kiubtech] pip install -r local.txt

Paso 3. Crear archivo settings.json

Al descargar el proyecto podrás observar que existe un archivo llamado "settings.example.json". Es necesario crear una copia de este archivo y nombrarlo "settings.json"

$[kiubtech] cp settings.example.json settings.json

Paso 3.1 Credenciales de base de datos

Es necesario configurar las credenciales de la base de datos de la siguiente manera:

"DB": {
    "ENGINE": "django.db.backends.postgresql_psycopg2",
    "HOST": "localhost",
    "NAME": "your-database",
    "USER": "your-username",
    "PASSWORD": "your-password",
    "PORT": 5432
  },

Paso 3.2 Amazon S3

Si tienen una cuenta de Amazon y requieren que los archivos media funcionen con un bucket de Amazon S3, será necesario llenar la siguiente configuración.

"AMAZON": {
    "AWS_ACCESS_KEY_ID": "******",
    "AWS_SECRET_ACCESS_KEY": "******",
    "S3": {
      "USE_S3": true,
      "AWS_STORAGE_BUCKET_NAME": "yourbucket",
      "AWS_S3_CUSTOM_DOMAIN": "yourbucket.s3.amazonaws.com",
      "MEDIAFILES_LOCATION": "media"
    }
  },

Paso 3.3 Configuración de la URL de la web.

Es necesario configurar "URL_SERVER" y agregarlo en la sección "ALLOWED_HOSTS" tal como lo podemos ver a continuación:

Tomando como ejemplo el dominio www.pythoniza.me

"SECURITY": {
    "LOGIN_REDIRECT_URL": "/management/dashboard/",
    "ALLOWED_HOSTS": [
      "pythoniza.me",
      "www.pythoniza.me"
    ]
  },
"URL_SERVER": "https://www.pythoniza.me",

MEDIAFILES_LOCATION es la configuración para poder definir una carpeta específica para los archivos media de los usuarios.

Licenciamiento.

MIT License

Copyright (c) 2018 Kiub Technologies

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Live demo

Puedes conocer el proyecto en acción accediendo a nuestro blog Pythonízame

Créditos

Core Team:

Make with love by @kiubtech and @pythonizame.

About

Código fuente blog pythonízame

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 44.8%
  • HTML 42.4%
  • CSS 9.3%
  • Python 3.5%