https://github.com/opengeekslab/geekschat
https://github.com/opengeekslab/geekschat
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/opengeekslab/geekschat
- Owner: openGeeksLab
- Created: 2017-11-28T07:40:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:48:58.000Z (over 3 years ago)
- Last Synced: 2025-04-08T05:46:02.586Z (about 1 year ago)
- Language: Python
- Size: 800 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple chat with React-Native and Django
## React-Native
Create a new file `.env` in the root of your React Native app:
```
API_URL=http://example.com
```
Then use this commands to start app:
```
yarn install
react-native run-ios
react-native run-android
```
## Django
Use this commands to start app:
```
virtualenv venv -p python3
source venv/bin/activate
pip install -r backend/requirements.txt
cd backend
python manage.py migrate
python manage.py runserver 0.0.0.0:8000
```