Skip to content

Latest commit

 

History

History
51 lines (43 loc) · 722 Bytes

README.md

File metadata and controls

51 lines (43 loc) · 722 Bytes

RSS READER

Quick Start

RSS list configration

RSS channels are defined inside constants.py file in rss django app

Install and activate virtual environment

# cd project_root
# python3 -m venv .venv
# source .venv/bin/activate

Client

  1. Install:
# cd rss_client
# npm install
  1. Run dev server:
# npm start

Server

  1. Install:
# cd rss_server
# pip install -r requirements.txt
  1. Run migrations
# python manage.py migrate
  1. Run RSS parser
# python manage.py parserssfeeds
  1. Run dev server
# python manage.py runserver

Versions

  • python: 3.7.0
  • pip 10.0.1
  • npm: 6.4.1
  • node: v8.15.0