kleingeist / muster

Django Webapp zur Aufbereitung historischer Stoffmuster Scans

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

muster

Webapp die Scans historisches Stoffmuster aufbereitet

Configuration

Put all local configuration to the file mustersite/local_settings.py which is loaded by mustersite/settings.py. For example to setup up your datbase connection you should add the connection parameters to it

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.postgresql_psycopg2',
        'NAME': 'muster',
        'USER': 'myuser',
        'PASSWORD': 'mypass',
        'HOST': 'localhost',
        'PORT': '5432',
    }
}

About

Django Webapp zur Aufbereitung historischer Stoffmuster Scans

License:GNU General Public License v2.0


Languages

Language:Python 37.2%Language:JavaScript 26.9%Language:HTML 25.1%Language:CSS 10.8%