The Bow Valley SPCA's mission is to provide the community with an adoption centre following a no kill, no cage philosophy to shelter, care for and re-home stray and abandoned dogs and cats and promote humane attitudes and responsible pet companionship through educational programs and community leadership.
Sponsorship of the website build has been provided by the Calgary Foundation and Blue Hut. Read more here
The code for the website is open source and other SPCAs, in particular, are encouraged to make use of the code as they see fit.
- Easy to use content editing interface
- Supports news, events, team and general content management for the centre
- Integrates with PetPoint data management system for a feed of adoptable animals at the centre
- Animal data retrieved from PetPoint is stored locally to the website
to allow:
- end-users to interact with animal information directly on the website
- improved social interactions with the website via Facebook and email marketing
- improved SEO
- ability to allow additional content to be associated with animals that is not supported by PetPoint
- Automated posting of new and recently adopted animals to Facebook
- Automated regular email listing new arrivals and recently adopted animals
The website is built with Wagtail and Django.
Experience with either Django or Wagtail will be required to make use of this code.
Code structure based on cookiecutter-django
The animals app provides the main functionality for displaying animals available for adoption. The app is based around using PetPoint (http://www.petpoint.com/) for managing animal data. It provides a Django management command to synchronize current adoptable animals in the PetPoint data management system with an 'Animal' Wagtail page model.
A PETPOINT_AUTH_KEY environment variable needs to be set to enable access to the PetPoint SOAP API.
Photo galleries on the animal details page use Featherlight jQuery lightbox plugin.
The animals app can easily be modified for rescue centres that do not use PetPoint by modifying the Wagtail Animal page model to suit their specific requirements.
The newsletter app provides a management command to construct and send a weekly newsletter listing recently arrived and adopten animals. The newsletter is published via MailChimp.
The newsletter includes:
- animals arrived in the last 14 days
- animals adopted in the last 14 days
The social app provides a simple queue where pages can be appended for later posting to social media. A management command is run to dequeue items and post them to Facebook.
Pages implementing the SocialMediaPostable abstract class can be added to the queue. Currently only the Animal page model implements this.
The following environment variables need to be set in a production environment
Name | App | Example | Note |
---|---|---|---|
DJANGO_SECRET_KEY | |||
DJANGO_SETTINGS_MODULE | config.settings.production | ||
DJANGO_ADMIN_URL | r'my-secret-django-admin-path' | Defaults to 'djadmin' in development | |
DATABASE_URL | |||
WAGTAIL_ADMIN_URL | r'my-secret-wagtail-admin-path' | Defaults to 'admin' in development | |
RECAPTCHA_SITE_KEY | Google Recaptcha | ||
RECAPTCHA_SECRET_KEY | Google Recaptcha | ||
GOOGLE_ANALYTICS_ID | core | ||
ADDTHIS_PUB_ID | core | ||
MAILCHIMP_USERNAME | newsletter | Required by 'newsletter' app | |
MAILCHIMP_SECRET_KEY | newsletter | Required by 'newsletter' app | |
MAILCHIMP_LIST_ID | newsletter | 83c4276af1 | MailChimp list ID that newsletter will be distributed to |
MAILCHIMP_TEMPLATE_ID | newsletter | 351313 | MailChimp template ID that newsletter will be created with |
MAILCHIMP_SUBJECT | newsletter | Subject line of email | |
MAILCHIMP_FROM_NAME | newsletter | From name of email | |
MAILCHIMP_REPLY_TO | newsletter | Reply to address of email | |
PETPOINT_AUTH_KEY | animals | PetPoint Authorization Key | |
WAGTAILADMIN_NOTIFICATION_FROM_EMAIL | Admin From email | ||
FACEBOOK_PAGE_ACCESS_TOKEN | social | Facebook page access token | |
FACEBOOK_PAGE_ID | social | Facebook page id | |
FB_PIXEL_ID | core |
$ flake8 bvspca
$ pytest bvspca
$ pytest bvspca --reuse-db # reuses the existing test db
$ pytest bvspca --create-db # forces the test db to be recreated
$ pytest bvspca -f # watches for changes if pytest-xdist installed
$ npm start
$ npm run build
Command | Required by | Suggested Frequency | Note |
---|---|---|---|
clearsessions | django | daily | |
publish_scheduled_pages | wagtail | every hour | |
sync_petpoint_data | animals app | every 30 minutes | |
send_newsletter | newsletter app | weekly | |
post_social_media | social app | daily |