diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..d0d4616 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +20.4 diff --git a/.travis.yml b/.travis.yml index 9112131..aafecc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: node_js services: - mongodb node_js: - - "16" + - "20.4" cache: directories: - "node_modules" diff --git a/Dockerfile b/Dockerfile index f352eb0..85a2524 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.15-alpine3.15 +FROM node:20.4-alpine3.18 MAINTAINER info@vizzuality.com ENV NAME query diff --git a/README.md b/README.md index 361d005..43b9577 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,6 @@ Dependencies on other Microservices: ### OS X -**First, make sure that you have the [API gateway running -locally](https://github.com/control-tower/control-tower).** - We're using Docker which, luckily for you, means that getting the application running locally should be fairly painless. First, make sure that you have [Docker Compose](https://docs.docker.com/compose/install/) diff --git a/package.json b/package.json index 48f3626..fd39d6b 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "url": "http://vizzuality.com/" }, "engines": { - "node": "~16" + "node": "~20.4" }, "license": "MIT", "devDependencies": { diff --git a/query.sh b/query.sh index da8fe40..d4b9831 100755 --- a/query.sh +++ b/query.sh @@ -19,7 +19,7 @@ case "$1" in docker-compose -f docker-compose-test.yml run test ;; *) - echo "Usage: controlTower.sh {test-e2e|test-unit|start|develop|test}" >&2 + echo "Usage: query.sh {test-e2e|test-unit|start|develop|test}" >&2 exit 1 ;; esac