Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ testem.log
# System Files
.DS_Store
Thumbs.db

# Project files
*.hydra.json
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ services:
- docker

before_install:
- npm install -g wait-on
- cd movies

before_script:
- npm start & SERVER_PID=$!
- wait-on --timeout 30000 http://localhost:3000

after_script:
- kill $SERVER_PID

deploy:
provider: script
Expand Down
Loading