Using Python + Flask + Vue + Axios + JWT to build a forum.
- clone
$ git clone https://github.com/codists/python-talk.git
- create and activate virtual environment
$ cd python-talk/backend/
backend$ source ./venv/bin/activate
- install requirements.txt
python-talk/backend$ pip install -r requirements.txt
- run
python-talk/backend$ flask run
Note: If you use rabbitmq or redis, and so on, please start they before starting Celery.
python-talk/backend$ celery -A python_talk.entrypoint.celery worker -l info
- clone
$ git clone https://github.com/codists/python-talk.git
- install
$ cd python-talk/frontend/ python-talk/frontend$ npm install
- run
python-talk/frontend$ npm run serve