JimenezJC / cozy_chat

Open source chat

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cozy_chat

Open source chat

Requirements

  • Python 3.5 or higher

Setup and customize

  1. touch .env To create an enviornment file, here is an example of what values must be filled.
DEBUG=true
SECRET_KEY=[secret-key]
DJANGO_SETTINGS_MODULE=django_config.settings.local
ALLOWED_HOSTS=localhost,127.0.0.1, 0.0.0.0
DATABASE_URL=postgres://[user]:[password]@[ip or localhost]:5432/[database]

POSTGRES_PASSWORD=[password]
POSTGRES_USER=[user]
POSTGRES_DB=[database]
  1. Head over to the requirements folder and run
pip install -r local.txt

to install all local dependencies for the project

  1. Run the basic django commands such as
python manage.py makemigrations
python manage.py migrate
python manage.py runserver

About

Open source chat

License:MIT License


Languages

Language:Python 77.2%Language:HTML 22.8%