/bookmarks

Replacement for del.icio.us

Primary LanguagePythonMIT LicenseMIT

Bookmarks

Bookmark manager to replace del.icio.us.

Updates Python 3 Known Vulnerabilities

Libraries Used:

Django

JavaScript

Integrations

  • Heroku Slack Webhooks

Bookmarklet

javascript:(function($){url='http://127.0.0.1:8000/new/';url+='?url='+encodeURIComponent(window.location.href);url+='&title='+encodeURIComponent(document.title);url+='&description='+encodeURIComponent(''+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text));window.open(url,"_self");})();

Django 2.0

Create python3 virtual environment

npm install
python3 -m venv .env
source .env/bin/activate
pip install -r requirements/local.txt
python bookmarks/manage.py migrate
python bookmarks/manage.py collectstatic
python bookmarks/manage.py runserver