Article extraction and annotation.
virtualenv venv
. ./venv/bin/activate
pip install -r requirements.txt
pre-commit install
npm install
Need to run this once to initialize nltk for smart article extraction:
import nltk
nltk.download('punkt')
Will need to create a file named .env with the following:
SECRET_KEY=<50 random characters>
Start the application
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
- Login to http://localhost:8000/admin
- Create a new Article, just need to give it a URL, Akima will do the rest.
- Now to go http://localhost:8000/portal/uuid
- Profit!