Howdy everyone
I have a little bit of problem while trying to using the TravsiCI to deploy my code.
When every time Travis get to the deploy session, everything looks just fine, but until the `gcloud` command `npm start` it always throw and error said can't not find module `./db`.
My code uses the TravisCI CLI to encrypt two file, one is `src/db.js` and other on is `gcsAuth/gcsAuthToken.json`, but I already decrypt and extract thought two files `before_install`
And I also 100% sure thought two file are there, because I already run `ls -la` to making sure they are there.
.travis.yml
language: node_js
node_js:
- node
deploy:
provider: gae
keyfile: gcsAuth/gcsAuthToken.json
project: hoovessound-173007
on: master
before_install:
- <decrypt code>
- tar xvf encrypt_pack.tar
Thanks