https://github.com/caffeines/ihello
A simple messaging application server.
https://github.com/caffeines/ihello
flask postgresql python python3 restful-api socket-io
Last synced: about 2 months ago
JSON representation
A simple messaging application server.
- Host: GitHub
- URL: https://github.com/caffeines/ihello
- Owner: caffeines
- Created: 2021-07-25T06:46:34.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-10-20T04:45:22.000Z (over 4 years ago)
- Last Synced: 2025-03-22T23:14:09.428Z (over 1 year ago)
- Topics: flask, postgresql, python, python3, restful-api, socket-io
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# iHello
A Simple Messaging Application Server
## Prerequisite
+ Python 3.7
+ Postgresql
## Setup
```
$ git clone https://github.com/caffeines/iHello
$ cp example.env .env # make necessary changes
$ python3 -m venv venv # if not already created
$ source venv/bin/activate
$ pip3 install -r requirements.txt
$ python3
$ import server.database.models
$ from server.database.client import db
$ db.create_all()
```
## Run application
```
$ flask run
```