Skip to content

m-agboola/FyChat-App

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chat App Using Flask-SocketIO

Introduction

This is a chat application, implemented using Flask-SocketIO with both the database (PostgreSQL) and the app deployed in Heroku. It also has user registration and authentication functionalities.

Files in the program

application.py: This is the main app file and contains both the registration/login page logic and the Flask-SocketIO backend for the app. models.py: Contains Flask-SQLAlchemy models used for user registration and login in application.py wtform_fields.py: Contains the classes for WTForms/Flask-WTF and the custom validators for the fields create.py: optional file only required if repo is to be cloned. See 'Usage' section below. Procfile: file required for Heroku requirements.txt: list of Python packages installed (also required for Heroku) templates/: folder with all HTML files static/: for with all JS scripts and CSS files

Usage

Clone/Modify app

  1. Modify application.py to replace the secret key (i.e. os.environ.get('SECRET')) with a secret key of your choice and the database link (i.e. os.environ.get('DATABASE_URL')) with the link to your own database.

    The two lines to be edited in application.py are shown below:

app.secret_key=os.environ.get('SECRET')
app.config['SQLALCHEMY_DATABASE_URI']=os.environ.get('DATABASE_URL')
  1. Edit create.py to once again replace os.environ.get('DATABASE_URL') with the link to your database.

  2. Run create.py from the terminal to create the table to hold user credentials.

foo@bar:~$ python create.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published