ExpressJS API built on top of the connected-car-node-sdk. This API is designed to act as a middleman between the client and FordPass API. This application can be deployed using serverless or docker. The latest docker image is available on docker hub in the connected-car-docker-api repository.
Setting up the local environment is as simple as cloning this repository and running the following commands:
npm install
npm run dev:start
This will start a local development server on port 3000.
If you want to build a custom docker image for a special use case, you can use do the following:
Building the docker image:
docker build -t connected-car-docker-api .
Running the docker image:
docker run -p 8080:3000 -d connected-car-docker-api
THIS CODEBASE IS NOT ENDORSED, AFFILIATED, OR ASSOCIATED WITH FORD, FOMOCO OR THE FORD MOTOR COMPANY.