Django web app with threaded comments and facebook authorization via allauth
git clone
and go to the project folder- setup your virtualenv
virtualenv env
- install project libs/frameworks
pip install -r requirements.txt
- run django migrations
python manage.py migrate
- create superuser
python manage.py createsuperuser
- follow allauth instructions and setup your project
- next you need to create aplication in facebook developer account and configure it.
- after that, you need to go to the django admin panel and change the existing site in
Site
model fromexample.com
to your project url, for examplelocalhost:8000
- in the current admin panel go to the
Social application model
and select your site from prev step and then configure it with your facebookapp id
,secret key
and poll down your site fromAvailable sites
toChoosen sites
. Save. - That's it.
Working DEMO