install.rst 755 B

12345678910111213141516171819
  1. Installation
  2. ============
  3. #. Run ``pip install coderedcms``
  4. #. Run ``coderedcms start mysite --sitename "My Company Inc." --domain www.example.com``
  5. .. note::
  6. ``--sitename`` and ``--domain`` are optional to pre-populate settings of your website.
  7. #. Enter the ``mysite`` project with ``cd mysite/``.
  8. #. Run ``python manage.py migrate`` to create the core models.
  9. #. Run ``python manage.py createsuperuser`` to create the initial admin user.
  10. #. Run ``python manage.py runserver`` to launch the development server, and go to
  11. http://localhost:8000 in your browser, or http://localhost:8000/admin/ to log in
  12. with your admin account.
  13. ✨🎉 You now have CodeRed CMS up and running! 🎉✨
  14. Follow the tutorial to build :doc:`tutorial01`