Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 1.48 KB

HELP.md

File metadata and controls

21 lines (20 loc) · 1.48 KB

Basic steps to add support for a particular service:

  1. Add information to README
  2. Add setting to turn service on/off in syte_settings.py
  3. Add above setting to site_pages context processor in context_processor.py
  4. Add a new django view for the particular service to get info and return json.
  5. Add above view to urls.py
  6. Write js file/function to query django view and add to js components
  7. Add hook/call to main javascript integration point links.js
  8. Add above js to list of js to compress.py
  9. Add link for service to base view template
  10. Add html template to templates directory to be rendered js file/function that queries django view for service.