PageRenderTime 25ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/starter_project_list.md

https://gitlab.com/asmjahid/pinax
Markdown | 85 lines | 55 code | 30 blank | 0 comment | 0 complexity | 2603210d6a34e8312bab7bca26f9d2c3 MD5 | raw file
  1. Each of these will eventually link to a separate page for each starter project with:
  2. * Description
  3. * What starter project its built on
  4. * What apps it uses (and perhaps particularly showcases)
  5. # List of Starter Projects
  6. ## Pinax-Project-Zero
  7. This project lays the foundation for all other Pinax starter projects. It provides the project directory layout and Bootstrap-based theme.
  8. ```
  9. pinax start zero mysite
  10. ```
  11. ## Pinax-Project-Account
  12. In addition to what is provided by the "zero" project, this project provides thorough integration with django-user-accounts, adding comprehensive account management functionality. It is a foundation suitable for most sites that have user accounts.
  13. ```
  14. pinax start account mysite
  15. ```
  16. ## Pinax-Project-SocialAuth
  17. In addition to what is provided by the "account" project, this project
  18. integrates with `python-social-auth` for Twitter, Facebook, and Google
  19. authentication.
  20. ```
  21. pinax start --dev social-auth mysite
  22. ```
  23. ## Pinax-Project-Blog
  24. This project gets you off and running with a blog.
  25. ```
  26. pinax start blog mysite
  27. ```
  28. ## Pinax-Project-Static
  29. The purpose of this starter project is to provide a robust mocking and design tool.
  30. ```
  31. pinax start static mysite
  32. ```
  33. ## Pinax-Project-Documents
  34. Builds on the Accounts starter project to get you off and running with a document library built around [pinax-documents](https://github.com/pinax/pinax-documents).
  35. ```
  36. pinax start documents mysite
  37. ```
  38. ## Pinax-Project-Wiki
  39. This project is a demo starter project that provides a wiki for authenticated users.
  40. ```
  41. pinax start wiki mysite
  42. ```
  43. ## Pinax-Project-Team-Wiki
  44. This project is a starter project that has account management with profiles and teams and basic collaborative content.
  45. ```
  46. pinax start team-wiki mysite
  47. ```
  48. Additional starter projects:
  49. * pinax-project-social
  50. * pinax-project-waitinglist
  51. * pinax-project-symposion
  52. * pinax-project-lms
  53. * pinax-project-forums
  54. * pinax-project-teams
  55. Some starter projects just demo an app or collection of apps. Some provide scaffolding during the development and testing of an app. Some are full-featured, out-of-the-box sites. Some lay the foundation for almost any custom Django site.