Skip to content

UVG Ingeniería de Software Proyecto Django React-Redux

License

Notifications You must be signed in to change notification settings

UVG-Teams/tutos-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tutos-System

Tuto's System

Proyecto UVG Ingeniería de Software

Configuración de entorno

Configuración de Base de Datos

  • Crear archivo /tutos/credentials.py
    DEVELOPMENT_DATABASE = {
        'NAME': 'tutos_dev_db',
        'USER': 'tu-usuario',
        'PASSWORD': 'tu-contraseña',
        'HOST': 'tu-host',
        'PORT': 'tu-puerto',
    }
  • Crear/resetear db y correr migrations
    $ python load_data.py

Desarrollo

  • Run Server
    $ python manage.py runserver 0.0.0.0:3000