-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (29 loc) · 832 Bytes
/
.travis.yml
File metadata and controls
36 lines (29 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
addons:
postgresql: '9.3'
services:
- redis-server
notifications:
email: false
sudo: false
env:
global:
- REDIS_URL=redis://:@localhost:6379
- DATABASE_URL=postgres://hashpanel:hashpanel@localhost:5432/hashpanel
before_install:
- psql -c "create database hashpanel;" -U postgres
- psql -c "create user hashpanel with password 'hashpanel';" -U postgres
- psql -c "grant all privileges on database hashpanel to hashpanel;" -U postgres
deploy:
provider: npm
email: me@traviswebb.com
api_key:
secure: gQnydPj8kRoSPNXeUUftj2WrPOnt0PYgg5MQUDGwgLC92Bkgm7sU5OQM1P8KG5al4Anmyzt2/aLsp9HUY/Ro0L19XXke4oyO6Fv7zkm5bUDe1NGC3r2IlM73vuvMnfzQ8bhAkRahfkDhb9y0GrvaAtr5el41dXOhHkW1bzrsY+4=
on:
tags: true
repo: hashware/backbone-client
all_branches: true