Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ac8680f
Add node-recurly
Stuk May 2, 2014
1f6ea4b
Add promise wrapper for node-recurly
Stuk May 2, 2014
1bd6243
Add subscriptions file
Stuk May 6, 2014
109ca6c
Add account module
Stuk May 6, 2014
ed9e2f5
Create account for new and existing users
Stuk May 7, 2014
0359dee
Migrate to DigitalOcean v2 API
Aug 15, 2017
96cc895
Update tugboat usage
Aug 15, 2017
37e97d8
fix container file-service error when saving file #251
hthetiot Aug 15, 2017
9c13208
Merge branch 'master' of github.com:montagestudio/firefly
hthetiot Aug 15, 2017
de32d9d
.travis.yml
hthetiot Aug 15, 2017
71305e1
update travis build
hthetiot Aug 15, 2017
f00e167
fix [project] - *uncaughtException* [TypeError: Constructor Map requi…
hthetiot Aug 15, 2017
a87d298
log uncaughtException on project and login
hthetiot Aug 15, 2017
aa0663a
add uncaughtException stack to logs
hthetiot Aug 15, 2017
8dc0505
Set working CDN to download Serf
Aug 15, 2017
c26006f
Fix creation of admin user
Aug 15, 2017
75ddd5f
npm install filament during deployment
Aug 16, 2017
4f6c23c
Update SSL certificates
Aug 16, 2017
3681a13
Improve deploying instructions in README
Aug 16, 2017
e017670
s/lilac/miranda/
Aug 16, 2017
04685ba
Clean up README
Aug 16, 2017
04fb900
Merge pull request #254 from montagestudio/bugs/uncaughtException
cdebost Aug 17, 2017
5a2e59d
jshint
hthetiot Aug 29, 2017
f6bf5e7
fix travis
hthetiot Aug 29, 2017
891e0f5
update jshint
hthetiot Aug 29, 2017
352b862
Merge branch 'master' of github.com:montagestudio/firefly
hthetiot Aug 29, 2017
fe49d54
fix duplicate jshint in package.json
hthetiot Aug 29, 2017
3687049
add travis badge
hthetiot Aug 29, 2017
63509e4
merge master
hthetiot Aug 29, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ FIREFLY_PROJECT_SERVER_COUNT=1

GITHUB_CLIENT_ID=e3a42c8d5e2631ed7707
GITHUB_CLIENT_SECRET=a4c0a8eb95388febf206493eddd26e679b6407ba

RECURLY_API_KEY=3ffb54a5a24f44d3a641c43580c50a07
RECURLY_SUBDOMAIN=montage-studio-testing
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"xit": false,
"expect": false,
"spyOn": false,

"URL": true,
"WeakMap": true,
"Map": true,
"Set": true,
Expand Down
44 changes: 44 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
sudo: required
dist: trusty
language: node_js
node_js:
- "4"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
# Update docker-engine using Ubuntu 'trusty' apt repo
- >
curl -sSL "https://get.docker.com/gpg" |
sudo -E apt-key add -
- >
echo "deb https://apt.dockerproject.org/repo ubuntu-trusty main" |
sudo tee -a /etc/apt/sources.list
- sudo apt-get update
- >
sudo apt-get -o Dpkg::Options::="--force-confdef" \
-o Dpkg::Options::="--force-confold" --assume-yes --allow-unauthenticated install docker-engine
- docker version
# Update docker-compose via pip
- sudo pip install docker-compose
- docker-compose version
# NodeJS Install
- "npm install"
# Update public certs
- sudo update-ca-certificates --verbose
addons:
hosts:
- local-aurora.montagestudio.com
before_script:
# - export DISPLAY=:99.0
# - sh -e /etc/init.d/xvfb start
# - docker build -t firefly-container:0.1 -f Dockerfile .
# - docker run -t --name firefly-container firefly-container:0.1
# - sleep 25
script:
- npm run lint
# TODO provide server to run test
# - npm run test
after_script:
- docker stop firefly-container
Loading