Skip to content

Commit 4f6c72f

Browse files
author
Matthew Fisher
committed
Merge pull request #641 from opdemand/godmode
consolidate all projects into opdemand/deis
2 parents d741c5f + b5440da commit 4f6c72f

260 files changed

Lines changed: 3287 additions & 325 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ omit =
33
*/venv/*
44
*/virtualenv/*
55
*tests*
6-
api/__init__.py
7-
api/docker.py
6+
controller/api/__init__.py
7+
controller/api/docker.py
88
client/__init__.py
99
client/models.py
10-
cm/__init__.py
11-
cm/models.py
12-
provider/digitalocean.py
13-
provider/ec2.py
14-
provider/models.py
15-
provider/rackspace.py
16-
provider/static.py
17-
web/__init__.py
18-
web/models.py
19-
web/templatetags/__init__.py
10+
controller/cm/__init__.py
11+
controller/cm/models.py
12+
controller/provider/digitalocean.py
13+
controller/provider/ec2.py
14+
controller/provider/models.py
15+
controller/provider/rackspace.py
16+
controller/provider/static.py
17+
controller/web/__init__.py
18+
controller/web/models.py
19+
controller/web/templatetags/__init__.py
2020
# osx library files when not running in virtualenv
2121
/Library/*
2222
/System/*
@@ -34,5 +34,5 @@ exclude_lines =
3434
if __name__ == .__main__.:
3535

3636
[html]
37-
extra_css = web/static/css/main.css
37+
extra_css = controller/web/static/css/main.css
3838
title = Deis Coverage Report

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ nosetests.xml
3838
*.sublime-workspace
3939

4040
# Deis' config file
41-
deis/local_settings.py
42-
.secret_key
41+
controller/deis/local_settings.py
42+
controller/.secret_key
4343

4444
# deis application logs
4545
logs/
@@ -53,6 +53,7 @@ venv/
5353
Vagrantfile.local
5454
*.swp
5555
.bundle
56+
/__init__.py
5657

5758
# Chef setup
5859
.chef

.gitmodules

Lines changed: 0 additions & 24 deletions
This file was deleted.

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ before_install:
1818
- sudo apt-get install -qq libpq-dev
1919

2020
install:
21-
- pip install -r requirements.txt
22-
- pip install -r dev_requirements.txt coveralls
21+
- pip install -r controller/requirements.txt
22+
- pip install -r controller/dev_requirements.txt coveralls
2323

2424
before_script:
2525
- "psql -c 'create database deis_testing;' -U postgres"
2626
- |
27-
cat > deis/local_settings.py <<EOF
27+
cat > controller/deis/local_settings.py <<EOF
2828
DATABASES = {
2929
'default': {
3030
'ENGINE': 'django.db.backends.postgresql_psycopg2',
@@ -39,8 +39,8 @@ before_script:
3939
EOF
4040
4141
script:
42-
- make flake8
43-
- make coverage
42+
- make -C controller flake8
43+
- make -C controller coverage
4444
- make -C docs
4545

4646
after_success:

Makefile

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,2 @@
1-
runserver:
2-
python manage.py runserver
3-
4-
db:
5-
python manage.py syncdb --migrate --noinput
6-
7-
test:
8-
python manage.py test --noinput api cm provider web
9-
10-
coverage:
11-
coverage run manage.py test --noinput api cm provider web
12-
coverage html
13-
141
test_client:
152
python -m unittest discover client.tests
16-
17-
client_binary:
18-
cd client && pyinstaller deis.spec
19-
20-
flake8:
21-
flake8

bin/pre-push-hook

Lines changed: 0 additions & 49 deletions
This file was deleted.

bin/push-hook

Lines changed: 0 additions & 20 deletions
This file was deleted.

bin/slugbuilder-hook.py

Lines changed: 0 additions & 168 deletions
This file was deleted.

0 commit comments

Comments
 (0)