forked from ansible/awx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
306 changed files
with
418 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
AnsibleWorks is commercial software licensed to you under | ||
an annual agreement from AnsibleWorks. | ||
AWX is commercial software licensed to you under an annual agreement from | ||
AnsibleWorks. | ||
|
||
It is free for use for up to five managed servers or virtual instances, | ||
after which you must purchase a license. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
recursive-include ansibleworks *.py | ||
recursive-include ansibleworks/static *.ico | ||
recursive-include ansibleworks/templates *.html | ||
recursive-include ansibleworks/ui *.html *.js | ||
recursive-include ansibleworks/ui/static *.css *.ico *.png *.gif *.jpg | ||
recursive-include ansibleworks/ui/static *.eot *.svg *.ttf *.woff *.otf | ||
recursive-include awx *.py | ||
recursive-include awx/static *.ico | ||
recursive-include awx/templates *.html | ||
recursive-include awx/ui *.html *.js | ||
recursive-include awx/ui/static *.css *.ico *.png *.gif *.jpg | ||
recursive-include awx/ui/static *.eot *.svg *.ttf *.woff *.otf | ||
recursive-include config * | ||
recursive-exclude ansibleworks/settings local_settings.py | ||
recursive-exclude awx devonly.py | ||
recursive-exclude awx/settings local_settings.py* | ||
include *.py *.txt *.md | ||
include MANIFEST.in | ||
include COPYING | ||
prune ansibleworks/public | ||
prune ansibleworks/projects | ||
prune ansibleworks/ui/static/lib/jstree/_* | ||
prune awx/public | ||
prune awx/projects | ||
prune awx/ui/static/lib/jstree/_* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
AnsibleWorks | ||
============ | ||
AWX | ||
=== | ||
|
||
Formerly known as ansible-commander, AnsibleWorks provides a web-based user | ||
interface and REST API built on top of Ansible. | ||
Formerly known as ansible-commander and AnsibleWorks, AWX provides a web-based | ||
user interface, REST API and task engine built on top of Ansible. | ||
|
||
The current version under development is 1.2-b2. | ||
|
||
Resources | ||
--------- | ||
|
||
Refer to `CONTRIBUTING.md` to get started developing, testing and building | ||
AnsibleWorks. | ||
Refer to `CONTRIBUTING.md` to get started developing, testing and building AWX. | ||
|
||
Refer to `setup/README.md` to get started deploying AnsibleWorks. | ||
Refer to `setup/README.md` to get started deploying AWX. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Copyright (c) 2013 AnsibleWorks, Inc. | ||
# All Rights Reserved. | ||
|
||
__version__ = '1.2-b2' | ||
|
||
import os | ||
import sys | ||
|
||
__all__ = ['__version__'] | ||
|
||
# Check for the presence/absence of "devonly" module to determine if running | ||
# from a source code checkout or release packaage. | ||
try: | ||
import awx.devonly | ||
MODE = 'development' | ||
except ImportError: | ||
MODE = 'production' | ||
|
||
def manage(): | ||
# Update the default settings environment variable based on current mode. | ||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'awx.settings.%s' % MODE) | ||
from django.core.management import execute_from_command_line | ||
if len(sys.argv) >= 2 and sys.argv[1] in ('version', '--version'): | ||
sys.stdout.write('awx-%s\n' % __version__) | ||
else: | ||
execute_from_command_line(sys.argv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright (c) 2013 AnsibleWorks, Inc. | ||
# All Rights Reserved. | ||
|
||
# This file should only be present in a source checkout, and never in a release | ||
# package, to allow us to determine whether we're running in a development or | ||
# production mode. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.