Davinci is an antropometry software.
Go to the root of the project and execute
docker-compose build
docker-compose up
That will expose the web application in port 5000 and port 9229 will be available for a remote debugger to be attached.
In the command line type: npm test
. The launch.json
file contains the proper configuration to run the test from vscode as well.
If you want to deploy this application in a server it is recommended to create a production docker-compose file that overrides the default environment, you can name it docker-compose.prod.yml
. That file SHOULD NOT be pushed in the repository and MUST be kept secret.
In this case you can start the server like this:
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
Follow these steps to allow google container access.
Create a k8s/davinci.yaml with the proper env vars and then
kubectl delete deployments --all
kubectl delete services --all
kubectl create -f k8s/davinci.yaml
# use proper nginx pod name
kubectl port-forward nginx-855b7f6c7f-mc7z8 8844:80