https://github.com/traviswimer/letschat
Simple chatroom application implemented multiple times using different backends
https://github.com/traviswimer/letschat
Last synced: 9 months ago
JSON representation
Simple chatroom application implemented multiple times using different backends
- Host: GitHub
- URL: https://github.com/traviswimer/letschat
- Owner: traviswimer
- Created: 2013-06-14T05:50:51.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2013-06-22T03:02:39.000Z (about 13 years ago)
- Last Synced: 2025-05-15T11:12:30.111Z (about 1 year ago)
- Language: Python
- Size: 1.68 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Let's Chat #
This is a simple chat application implemented using multiple different back-ends.
## Should you use this on your website? ##
No. The code in this repo is not intended to be secure. I wrote this code solely for the experience of writing code in different languages and frameworks.
## What is the Let's Chat App? ##
It is a very basic web-based chatroom application.

### Features ###
* User Authentication (Register/Login/Logout)
* Users can post chat messages
* Users can view a feed of chat messages
* Recent Users List
* User Image Upload
# Languages/Frameworks #
## Java ##
Created using JSP and Java Servlets/Classes. Utilizes a MySQL database for storage.
## Django ##
Uses Python and the Django framework. Data is stored using SQLite3.
PIL would not install on my windows environment, so this version does not include the image upload feature.
## PHP ##
Implemented using PHP and MySQL(PDO) for the database.