Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 838 Bytes

File metadata and controls

34 lines (23 loc) · 838 Bytes

darkweb

This is used to be the repository holding the DarkScience website, that has been moved to this website https://git.drk.sc/darkscience/darkscience.net.

At the moment this repository contains a Django application which powers the quotes system for DarkScience. This is a legacy part of the old website still in service.

Development Environment

You can configure the development environment with the following:

NOTE: These steps assume you have Python along with the pipenv installed.

$ pipenv install --dev
# configure URL to DB (can be sqlite locally)
$ export DATABASE_URL="sqlite:///$(pwd)/db.sqlite"
$ pipenv run python manage.py migrate

Running the tests

$ pipenv run python manage.py test

Running the development server

$ pipenv run python manage.py runserver