Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
6e7839d2
Commit
6e7839d2
authored
Nov 13, 2013
by
John Jarvis
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #447 from edx/jarv/final-release-updates
some final changes before the dosa release
parents
e5b8b21e
852f81be
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
3 deletions
+16
-3
util/jenkins/ansible-provision.sh
+1
-1
vagrant/devstack/README.rst
+1
-2
vagrant/devstack/Vagrantfile
+14
-0
No files found.
util/jenkins/ansible-provision.sh
View file @
6e7839d2
...
...
@@ -48,7 +48,7 @@ fi
if
[[
-z
$ami
]]
;
then
if
[[
$server_type
==
"full_edx_installation"
]]
;
then
ami
=
"ami-
dfe4bcb6
"
ami
=
"ami-
81e0c5e8
"
elif
[[
$server_type
==
"ubuntu_12.04"
]]
;
then
ami
=
"ami-d0f89fb9"
fi
...
...
vagrant/devstack/README.rst
View file @
6e7839d2
...
...
@@ -18,5 +18,4 @@ The ``devstack`` instance is designed to run code and tests, but you can do most
- You can load pages served by the running Vagrant instance.
Installation instructions - https://github.com/edx/configuration/wiki#installing-edx-using-a-pre-built-vagrant-devstack-image
Using the devstack - https://github.com/edx/configuration/wiki/Using-the-edX-devstack
Wiki documation - https://github.com/edx/configuration/wiki/edX-Developer-Stack
vagrant/devstack/Vagrantfile
View file @
6e7839d2
MEMORY
=
2048
CPU_COUNT
=
2
edx_platform_mount_dir
=
"cs_comments_service"
forum_mount_dir
=
"edx-platform"
if
ENV
[
'VAGRANT_MOUNT_BASE'
]
edx_platform_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
forum_mount_dir
forum_mount_dir
=
ENV
[
'VAGRANT_MOUNT_BASE'
]
+
"/"
+
edx_platform_mount_dir
end
Vagrant
.
configure
(
"2"
)
do
|
config
|
# Creates a devstack from a base Ubuntu 12.04 image
...
...
@@ -12,6 +23,9 @@ Vagrant.configure("2") do |config|
config
.
vm
.
network
:forwarded_port
,
guest:
8001
,
host:
8001
config
.
vm
.
network
:forwarded_port
,
guest:
4567
,
host:
4567
config
.
vm
.
synced_folder
"
#{
edx_platform_mount_dir
}
"
,
"/edx/app/edxapp/edx-platform"
,
:create
=>
true
,
nfs:
true
config
.
vm
.
synced_folder
"
#{
forum_mount_dir
}
"
,
"/edx/app/forum/cs_comments_service"
,
:create
=>
true
,
nfs:
true
config
.
hostsupdater
.
aliases
=
[
"preview.localhost"
]
config
.
vm
.
provider
:virtualbox
do
|
vb
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment