From 2c6029682a377da751b3c93728f314d4b269b394 Mon Sep 17 00:00:00 2001 From: David Ray Date: Fri, 10 Feb 2017 07:44:58 -0500 Subject: [PATCH] removing extra readme --- README | 48 ------------------------------------------------ readme.md | 50 ++++++++++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 48 insertions(+), 50 deletions(-) delete mode 100644 README diff --git a/README b/README deleted file mode 100644 index 69529fd..0000000 --- a/README +++ /dev/null @@ -1,48 +0,0 @@ -Wagtail demo project -======================= - -This is a demonstration project for [Wagtail CMS](http://wagtail.io). - -*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](http://wagtail.readthedocs.org/en/latest/getting_started/). - -Setup with Vagrant ------------------- - -### Dependencies -* [VirtualBox](https://www.virtualbox.org/) -* [Vagrant 1.5+](http://www.vagrantup.com) - -### Installation -Run the following commands: - - git clone https://github.com/torchbox/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/](http://localhost:8000/) and the Wagtail admin interface at [http://localhost:8000/admin/](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 -* [PIP](https://github.com/pypa/pip) - -### Installation - -With PIP installed run the following commands: - - git clone https://github.com/torchbox/bakerydemo.git - cd wagtaildemo - pip install -r requirements.txt - ./manage.py migrate - ./manage.py load_initial_data - ./manage.py createsuperuser - ./manage.py runserver diff --git a/readme.md b/readme.md index eeb6827..69529fd 100644 --- a/readme.md +++ b/readme.md @@ -1,2 +1,48 @@ -bakerydemo -================== +Wagtail demo project +======================= + +This is a demonstration project for [Wagtail CMS](http://wagtail.io). + +*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](http://wagtail.readthedocs.org/en/latest/getting_started/). + +Setup with Vagrant +------------------ + +### Dependencies +* [VirtualBox](https://www.virtualbox.org/) +* [Vagrant 1.5+](http://www.vagrantup.com) + +### Installation +Run the following commands: + + git clone https://github.com/torchbox/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/](http://localhost:8000/) and the Wagtail admin interface at [http://localhost:8000/admin/](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 +* [PIP](https://github.com/pypa/pip) + +### Installation + +With PIP installed run the following commands: + + git clone https://github.com/torchbox/bakerydemo.git + cd wagtaildemo + pip install -r requirements.txt + ./manage.py migrate + ./manage.py load_initial_data + ./manage.py createsuperuser + ./manage.py runserver