-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add instructions to install a django project before installing wagtail-bakery #71
Comments
|
Install the Django code Installing an official release with pip Install [pip] Take a look at venv. After you’ve created and activated a virtual environment, enter the command: type windows cmd Installing a distribution-specific package Installing the development version If you decide to use the latest development version of Django, you’ll want to pay close attention to the development timeline, and you’ll want to keep an eye on the release notes for the upcoming release. This will help you stay on top of any new features you might want to use, as well as any changes you’ll need to make to your code when updating your copy of Django. (For stable releases, any necessary changes are documented in the release notes.) If you’d like to be able to update your Django code occasionally with the latest bug fixes and improvements, follow these instructions: Make sure that you have [Git] Check out Django’s main development branch like so: type windows cmd This will create a directory django in your current directory. Make sure that the Python interpreter can load Django’s code. The most convenient way to do this is to use a virtual environment and pip. The contributing tutorial walks through how to create a virtual environment. After setting up and activating the virtual environment, run the following command: type windows cmd ...> py -m pip install -e django\ This will make Django’s code importable, and will also make the django-admin utility command available. In other words, you’re all set! When you want to update your copy of the Django source code, run the command git pull from within the django directory. When you do this, Git will download any changes. |
While going through the README for instructions to install wagtail-bakery, it was confusing as to where is this INSTALLED_APPS setting where I need to add bakery. It would be better if there are instructions to setup a django project and then ask the user to update INSTALLED_APPS in settings.py file.
The text was updated successfully, but these errors were encountered: