Skip to content

Latest commit

 

History

History
31 lines (29 loc) · 796 Bytes

README.md

File metadata and controls

31 lines (29 loc) · 796 Bytes

Social Reminder

Get reminders for sending messages to friends, family and others. Very handy if you're forgetful (like me) or just need an extra hand in helping you out.

  • Create a virtual environment
$ virtualenv venv
$ source ./venv/bin/activate
  • Install requirements
$ pip install -r requirements.txt

##Prepare the project. We use django-environ to read environment variables from the .env file in your root directory

$ echo "SECRET_KEY=ENTERSOMEVERYSECRETKEYWITHMIN50CHARSHERE" > .env
$ ./manage.py migrate

If you want to get up and running with test data, you can run this management command. It will create 100 entries with related tags:

$ ./manage.py create_test_data

##Start the app

$ ./manage.py runserver