Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/traviswimer/letschat
Simple chatroom application implemented multiple times using different backends
https://github.com/traviswimer/letschat
Last synced: 1 day 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 (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-06-22T03:02:39.000Z (over 11 years ago)
- Last Synced: 2024-11-06T21:14:06.640Z (about 2 months ago)
- Language: Python
- Size: 1.68 MB
- Stars: 0
- Watchers: 3
- 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.
![Lets Chat Screenshot](/screenshots/screenshot.png)
### 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.