README.md 1.58 KB
Newer Older
jarv committed
1
# Configuration Management
2 3 4 5

## Introduction

The goal of the edx/configuration project is to provide a simple, but
6 7
flexible, way for anyone to stand up an instance of Open edX that is
fully configured and ready-to-go.
8

9
Building the platform takes place in two phases:
10

11
* Infrastructure provisioning
12 13 14 15
* Service configuration

As much as possible, we have tried to keep a clean distinction between
provisioning and configuration.  You are not obliged to use our tools
16
and are free to use one, but not the other.  The provisioning phase
17 18 19 20 21 22 23 24 25 26
stands-up the required resources and tags them with role identifiers
so that the configuration tool can come in and complete the job.

The reference platform is provisioned using an Amazon
[CloudFormation](http://aws.amazon.com/cloudformation/) template.
When the stack has been fully created you will have a new AWS Virtual
Private Cloud with hosts for the core edX services.  This template
will build quite a number of AWS resources that cost money, so please
consider this before you start.

dhpollack committed
27
The configuration phase is managed by [Ansible](http://ansible.com/).
28
We have provided a number of playbooks that will configure each of
29
the edX services.
30 31 32 33 34

This project is a re-write of the current edX provisioning and
configuration tools, we will be migrating features to this project
over time, so expect frequent changes.

35

36
For more information including installation instruction please see the [Configuration Wiki](https://github.com/edx/configuration/wiki).
37 38

For info on any large recent changes please see the [change log](https://github.com/edx/configuration/blob/master/CHANGELOG.md).