levibostian / ExpressjsBlanky

Blank Express.js project to get up and running FAST.
MIT License
7 stars 0 forks source link

Move helpful code into a separate library. #40

Open levibostian opened 3 years ago

levibostian commented 3 years ago

Came from iOSBlanky: https://github.com/levibostian/iOSBlanky/issues/47

levibostian commented 3 years ago

Might need to use this tool to publish packages.

levibostian commented 3 years ago

Example would be this function to map on all properties (including nested) of an object

levibostian commented 3 years ago

This issue also includes continuous delivery. The scripts that I run to build/test/deploy my apps is something that I feel good about, but am also nervous about and never sure if it works. It would be great if I was able to separate the logic in deploying applications into it's own project that has great testing around it so I know it works.

I have a goal that I can feel very confident in my deployment process. At this time, I do not. When a deployment happens, I hold my breath a bit. Not because of my code (because I have tested it) but in the deployment process itself. Maybe I forgot some environment variables. Maybe my script doesn't handle an edge case. Maybe I made a modification to my deployment script and have not tested it yet. I would love to enable something like greenkeeper where my code projects automatically get security vulnerability checks and deployments. But, I am nervous to enable them because I am afraid that my deployment script will have an issue.

FYI: You can setup a minikube cluster in github actions