1
Fork 0

Update node versions

This commit is contained in:
Jake Howard 2016-04-08 23:38:36 +01:00
parent d32e19c4ac
commit cbb7365f58
3 changed files with 12 additions and 0 deletions

1
.nvmrc Normal file
View file

@ -0,0 +1 @@
5.10.1

9
build
View file

@ -1,5 +1,14 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [ -z "$NVM_DIR" ]
then
NVM_DIR="$HOME/.nvm"
fi
. $NVM_DIR/nvm.sh
nvm install
nvm use
set -e set -e
pyvenv-3.4 env pyvenv-3.4 env

View file

@ -1,6 +1,8 @@
machine: machine:
python: python:
version: 3.4.2 version: 3.4.2
node:
version: 5.10.1
environment: environment:
DEBUG: true DEBUG: true
DATABASE_URL: sqlite://~/database.db DATABASE_URL: sqlite://~/database.db