https://github.com/mohammad-pooladi/flask-chat-application
https://github.com/mohammad-pooladi/flask-chat-application
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mohammad-pooladi/flask-chat-application
- Owner: mohammad-pooladi
- License: gpl-3.0
- Created: 2025-04-27T09:20:42.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-06-23T19:28:53.000Z (5 months ago)
- Last Synced: 2025-06-23T20:29:03.243Z (5 months ago)
- Language: Python
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## project setup
1- clone project
```shell
git clone https://github.com/mohammad-pooladi/flask-chat-application.git
```
```shell
cd flask-chat-application
```
2- SetUp venv
``` shell
virtualenv -p python3.12 venv
source venv/bin/activate
```
3- install Dependencies
``` shell
pip install -r requirements_dev.txt
pip install -r requirements.txt
```
4- create your env
``` shell
cp .env.example .env
```
5- Create tables
```shell
python manage.py migrate
```
6- spin off docker compose
```shell
docker compose -f docker-compose.yml up -d
```
7- run the project
```shell
python app.py
```