Skip to content

Commit 8767872

Browse files
authored
Merge pull request #255 from rovercode/development
Push to Production
2 parents 0bbd1da + 49d39a9 commit 8767872

26 files changed

+1101
-265
lines changed

.travis.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: true
22
services:
33
- postgresql
4+
- docker
45
addons:
56
postgresql: "9.4"
67
env:
@@ -9,7 +10,7 @@ before_install:
910
- sudo apt-get update -qq
1011
- sudo apt-get install -qq build-essential gettext python-dev zlib1g-dev libpq-dev
1112
xvfb
12-
- sudo apt-get install -qq libtiff4-dev libjpeg8-dev libfreetype6-dev liblcms1-dev
13+
- sudo apt-get install -qq libtiff5-dev libjpeg8-dev libfreetype6-dev liblcms2-dev
1314
libwebp-dev
1415
- sudo apt-get install -qq graphviz-dev python-setuptools python3-dev python-virtualenv
1516
python-pip
@@ -36,6 +37,19 @@ language: python
3637
python:
3738
- '3.6'
3839
deploy:
40+
# TODO: Re-add when ECR exists
41+
# - provider: script
42+
# script: bash ecr-deploy.sh alpha
43+
# on:
44+
# branch: alpha
45+
# - provider: script
46+
# script: bash ecr-deploy.sh beta
47+
# on:
48+
# branch: beta
49+
# - provider: script
50+
# script: bash ecr-deploy.sh prod
51+
# on:
52+
# branch: prod
3953
- provider: codedeploy
4054
access_key_id: AKIAIIORSR4VN3YQY2YQ
4155
secret_access_key:

Pipfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ python_version = "3.6"
99
[dev-packages]
1010
pylint = "~=2.1.1"
1111
pylint-django = "~=2.0.2"
12-
prospector = "~=1.1.6.2"
12+
prospector = "==1.1.6.2"
1313
coverage = "~=4.5.1"
1414
django-coverage-plugin = "~=1.6.0"
1515
django-extensions = "~=2.1.0"
1616
django-test-plus = "~=1.1.0"
1717
django-debug-toolbar = "~=1.11"
1818
ipdb = "~=0.11"
19-
pytest-django = "~=3.4.5"
19+
pytest-django = "~=3.5.0"
2020
pytest-sugar = "~=0.9.1"
2121
pytest-cov = "~=2.5.1"
2222
pytest-asyncio = "~=0.10.0"
2323
Sphinx = "~=1.7.5"
24-
Werkzeug = "~=0.14.1"
24+
Werkzeug = "~=0.15.3"
2525
factory_boy = "~=2.11.1"
2626
sphinx-autobuild = "~=0.7.1"
2727
sphinx-rtd-theme = "~=0.4.0"

Pipfile.lock

Lines changed: 300 additions & 203 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Install `docker <https://docs.docker.com/engine/installation/>`_ and `docker-com
3232

3333
.. code-block:: bash
3434
35-
$ git clone --recursive https://github.com/aninternetof/rovercode-web.git && cd rovercode-web
35+
$ git clone --recursive https://github.com/rovercode/rovercode-web.git && cd rovercode-web
3636
$ sudo docker-compose -f dev.yml build
3737
$ sudo docker-compose -f dev.yml up
38-
$ google-chrome localhost:8000
38+
$ google-chrome localhost:8000/docs
3939
4040
Basic Commands
4141
--------------

0 commit comments

Comments
 (0)