This is a demonstration project for the amazing Wagtail CMS.
 
 
 
 
 
 
Go to file
David Ray f3c25e9f98 alphabetize heroku rqs 2017-02-12 03:34:49 -05:00
bakerydemo remove specific ALLOWED_HOSTS domain 2017-02-12 02:08:02 -05:00
requirements alphabetize heroku rqs 2017-02-12 03:34:49 -05:00
vagrant restructuring requirements to not pollute non-heroku environments with heroku specific requirements 2017-02-12 02:21:40 -05:00
.gitignore ignoring media 2017-02-09 11:33:06 -05:00
Procfile restructuring requirements to not pollute non-heroku environments with heroku specific requirements 2017-02-12 02:21:40 -05:00
Vagrantfile Add initial demo scaffold without any site apps 2017-02-09 12:20:21 +00:00
app.json merging conflicting migrations, adding heroku bits 2017-02-10 10:51:50 -05:00
manage.py Add initial demo scaffold without any site apps 2017-02-09 12:20:21 +00:00
readme.md restructuring requirements to not pollute non-heroku environments with heroku specific requirements 2017-02-12 02:21:40 -05:00
requirements.txt restructuring requirements to not pollute non-heroku environments with heroku specific requirements 2017-02-12 02:21:40 -05:00
runtime.txt Add initial demo scaffold without any site apps 2017-02-09 12:20:21 +00:00
stellar.yaml Add initial demo scaffold without any site apps 2017-02-09 12:20:21 +00:00

readme.md

Deploy

Wagtail demo project

This is a demonstration project for Wagtail CMS.

We do not recommend using this project to start your own site. This project is only to provide some examples of implementing common features, it is not an exemplar of Django or Wagtail best practice.

If you're reasonably new to Python/Django, we suggest you run this project on a Virtual Machine using Vagrant, which helps resolve common software dependency issues. However for more experienced developers, instructions to start this project without Vagrant follow below.

Once you're familiar with the examples in this project and you want to start a real site, we strongly recommend running the wagtail start command in a fresh virtual environment, explained in the Wagtail CMS Documentation.

Setup with Vagrant

Dependencies

Installation

Run the following commands:

git clone git@github.com:wagtail/bakerydemo.git
cd wagtaildemo
vagrant up
vagrant ssh
# then, within the SSH session:
./manage.py runserver 0.0.0.0:8000

The demo site will now be accessible at http://localhost:8000/ and the Wagtail admin interface at http://localhost:8000/admin/.

Log into the admin with the credentials admin / changeme.

Setup without Vagrant

Don't want to set up a whole VM to try out Wagtail? No problem.

Dependencies

Installation

With PIP installed run the following commands:

git clone git@github.com:wagtail/bakerydemo.git
cd wagtaildemo
pip install -r requirements/base.txt
./manage.py migrate
./manage.py load_initial_data
./manage.py runserver

Log into the admin with the credentials admin / changeme.

Because we can't (easily) use ElasticSearch for this demo, we use wagtail's native DB search. However, native DB search can't search specific fields in our models on a generalized Page query. So for demo purposes ONLY, we hard-code the model names we want to search into search.views, which is not ideal. In production, use ElasticSearch and a simplified search query, per http://docs.wagtail.io/en/v1.8.1/topics/search/searching.html