https://github.com/aryamanz29/realcrypto
A Realtime crypto table based on django channels, redis and celery ๐
https://github.com/aryamanz29/realcrypto
celery channels cryptocurrency django redis redis-server
Last synced: 8 months ago
JSON representation
A Realtime crypto table based on django channels, redis and celery ๐
- Host: GitHub
- URL: https://github.com/aryamanz29/realcrypto
- Owner: Aryamanz29
- License: mit
- Created: 2021-12-03T15:51:42.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T07:47:28.000Z (about 2 years ago)
- Last Synced: 2025-01-23T05:44:19.390Z (9 months ago)
- Topics: celery, channels, cryptocurrency, django, redis, redis-server
- Language: Python
- Homepage: https://github.com/Aryamanz29/RealCrypto
- Size: 43 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RealCrypto ๐
#### A **Realtime crypto table** based on [django channels](https://channels.readthedocs.io/en/stable/), [redis](https://pypi.org/project/redis/) and [celery](https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html).

### Setup ๐
#### Install redis and start `redis-server` ๐ฅ:
```bash
sudo apt-get install redis-server
sudo service redis-server start
[Options: {start|stop|restart|force-reload|status}]
```
#### Create & activate `virtualenvironment`๐พ :
```bash
python3 -m venv env
source env/bin/activate
```
#### Install requirements ๐ :
```bash
pip install -r requirements.txt
```
#### Run below commands on terminal โคต :
```bash
python3 manage.py makemigrations
python3 manage.py migrate
python manage.py createsuperuser
python3 manage.py runserver
```
#### Terminal 2 ๐ป :
```bash
celery -A RealCrypto worker -l INFO
```
#### Terminal 3 ๐ป :
```bash
celery -A RealCrypto beat -l INFO
```