Is it possible to apply Wagtail CMS to my existing Django project?











up vote
1
down vote

favorite












I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.



I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.










share|improve this question




























    up vote
    1
    down vote

    favorite












    I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.



    I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.










    share|improve this question


























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.



      I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.










      share|improve this question















      I recently found wagtail, which is a very cool Django CMS library. I tried to use it following its documentation, but its installing documentation is based on starting-over Django project.



      I'm using ReactJS for frontend and Django as API backend. I was wondering if it's possible for me to apply wagtail to my existing Django project.







      django wagtail






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 22 at 21:03









      allcaps

      7,3692142




      7,3692142










      asked Nov 21 at 23:49









      Jay

      419111




      419111
























          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html






          share|improve this answer





















          • Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
            – Jay
            Nov 22 at 0:23






          • 1




            No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
            – gasman
            Nov 22 at 0:44










          • You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
            – Mike Robinson
            Nov 22 at 16:09











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422040%2fis-it-possible-to-apply-wagtail-cms-to-my-existing-django-project%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html






          share|improve this answer





















          • Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
            – Jay
            Nov 22 at 0:23






          • 1




            No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
            – gasman
            Nov 22 at 0:44










          • You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
            – Mike Robinson
            Nov 22 at 16:09















          up vote
          1
          down vote













          Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html






          share|improve this answer





















          • Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
            – Jay
            Nov 22 at 0:23






          • 1




            No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
            – gasman
            Nov 22 at 0:44










          • You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
            – Mike Robinson
            Nov 22 at 16:09













          up vote
          1
          down vote










          up vote
          1
          down vote









          Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html






          share|improve this answer












          Documentation for integrating Wagtail into an existing Django project is here: http://docs.wagtail.io/en/stable/getting_started/integrating_into_django.html







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 21 at 23:58









          gasman

          9,3041324




          9,3041324












          • Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
            – Jay
            Nov 22 at 0:23






          • 1




            No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
            – gasman
            Nov 22 at 0:44










          • You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
            – Mike Robinson
            Nov 22 at 16:09


















          • Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
            – Jay
            Nov 22 at 0:23






          • 1




            No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
            – gasman
            Nov 22 at 0:44










          • You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
            – Mike Robinson
            Nov 22 at 16:09
















          Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
          – Jay
          Nov 22 at 0:23




          Thank you for the link. It let me access wagtail CMS on my existing Django app. However, I don't see my models on the CMS which are the models that I can see on my default Django admin. Are they not compatible each other?
          – Jay
          Nov 22 at 0:23




          1




          1




          No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
          – gasman
          Nov 22 at 0:44




          No, the Wagtail admin backend is a separate thing from Django admin. The Modeladmin module is one option for making your Django models available within Wagtail admin, though: docs.wagtail.io/en/stable/reference/contrib/modeladmin/…
          – gasman
          Nov 22 at 0:44












          You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
          – Mike Robinson
          Nov 22 at 16:09




          You should use Wagtail's admin-pages to do "all Wagtail things." Don't monkey around with them in the Django admin. Be sure that your URL-patterns occur before any Wagtail patterns (and, that they are distinct from them). Otherwise, "Wagtail's just a Django app," and it works quite well. (I've also used Peregrine, a dedicated blog-app, simultaneously with Wagtail.) The beauty of Django is that you have ... choices.
          – Mike Robinson
          Nov 22 at 16:09


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53422040%2fis-it-possible-to-apply-wagtail-cms-to-my-existing-django-project%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Berounka

          Sphinx de Gizeh

          Different font size/position of beamer's navigation symbols template's content depending on regular/plain...