Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 533 Bytes

README.md

File metadata and controls

24 lines (21 loc) · 533 Bytes

Welcome to bookmarks project. It work on django.

You need add file bookmarks/settings_local.py. Example file:

SECRET_KEY = 'TOKEN'
DEBUG = False
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'name_db',
        'USER': 'name_user',
        'PASSWORD': 'password',
        'HOST': 'ip-address or host',
        'PORT': '5432',
    }
}

Installing

You must be use Python version 3.6.2. Install Python package with:

pip install -r requirements.txt