Create README.md

This commit is contained in:
Andros Fenollosa 2020-11-17 23:49:36 +01:00 committed by GitHub
parent 7098714788
commit 3aa2e9dff5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

29
README.md Normal file
View File

@ -0,0 +1,29 @@
# Ejemplo de Chat con Django
- Asíncrono.
- Channels.
- Integración con Redis.
- Preparado para salas individuales.
- Minimalismo en Front-End con Javascript Vainilla.
## Instalar
``` shell
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```
Y levantar Redis.
``` shell
docker-compose up -d
```
## Ejecutar
``` shell
venv/bin/daphne -b localhost -p 8000 mi_web.asgi:application
```
Abre en tu navegador en ```localhost:8000```.