Django web app with threaded comments and facebook authorization via allauth
git cloneand 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
Sitemodel fromexample.comto your project url, for examplelocalhost:8000 - in the current admin panel go to the
Social application modeland select your site from prev step and then configure it with your facebookapp id,secret keyand poll down your site fromAvailable sitestoChoosen sites. Save. - That's it.
Working DEMO