Recreation of the BBS game "Legend of the Red Dragon" with Django (currently in very early initial development stage)
git clone https://github.com/hal0zer0/lowd.git
pip install -r requirements.txt
Create a lowd_secrets.py file with a settings_secret_key=containing a long random string LIKE
settings_secret_key='skG7f#8kgjdGD(wON29&3baWeCanDanceIfWeWantTo'This is used for background security stuff and should NOT be added to Git
TEMPORARILY I am including a sqlite db to make initial setup easier for contributors. Eventually the db will be removed from source control and I will provide fixtures for the data to be imported.
python ./managepy makemigrations
python ./manage.py migrate
From within directory containing manage.py
python manage.py runserver
Which should give you web access at localhost:8000
Login is required for all views user:admin pw:roadhouse
Again, this is temporary.
It's currently set to create a new character on EVERY login, but that's simply because I want that for now.
To KEEP your character, just uncheck the "New" box from within /admin User page