Skip to content

varvianskyiviach/chat_t

Repository files navigation

Chat application

Start application

....

First way


Instal Deps

# install pipenv
pip install pipenv

# activate virtual env
pipenv shell

# install deps
pipenv sync --dev

Additional

# regenerate Pipfile.lock file
pipenv lock

# pipenv lock & pipenv sync
pipenv update

Run application

# perform migrations
python src/manage.py migrate

# run django server
python src/manage.py runserver

Second way


Run the application from Docker

# Build the application image
docker-compose build

# Run docker-compose services as deaemon
docker-compose up -d

# to connect to a Docker container.
docker exec -it chat_app bash

# perform migrations
python src/manage.py migrate

Usage code quality tools

The pre-commit hook will be automatically run

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published