Skip to content

Latest commit

 

History

History
52 lines (48 loc) · 2.06 KB

README.md

File metadata and controls

52 lines (48 loc) · 2.06 KB

Flask_chat

LOGO|Flask

*** Powered By ***

this is my frist attempt in the world of web-dev, it is a Flask WebApp for chatting.

consists of a couple of pages!

main page main_page login/register pages register_page chat channel page chat_channel_page

Features:

  • Nice looking Custom CSS style (no styling framework is used)
  • Users can upload and use a profile image
  • add as much channels/users, there is no email validity as this is for development
  • using sqlite3 DataBase for development
  • using JS to set window position when there is a new messege
  • delete messeges from both chatting users
  • custom error pages

Used Flask extensions/packages/libraries including:

Installation

just use a virtual environment for the app
$ pip3 install virtualenv
make a new folder for the app
$ mkdir ~/flask_chat_dir
$ cd flask_chat_dir
$ virtualenv flask_chat_env
$ git clone
$ source flask_chat_env/bin/activate 
$ pip -r install requirements
$ python flask_chat.py