Categories
aws cloud

Adding additional profiles to AWS CLI

I use AWS Shell which is an integrated shell for working with the AWS CLI. Navigate to ~/.aws/ on a mac. If you are on a windows, you will need to google the path. In this directory you will see .credentials and .config. Open .credentials in your editor and you should see something like below. [default] aws_access_key_id […]

Categories
front-end

Shell Script and Docker

Here is a simple shell script that checks to see if docker is installed. If docker is installed it then filters to see if a container with a certain name is also running and  if it is not it will trigger the run command. #!/bin/sh clear if [ “$(docker –version)” ] then if [ “$(docker ps […]

Categories
journal thoughts

Firebase or Not Firebase

I have been hearing out in the interwebs that firebase is not ideal for most small startup projects or small projects in general. Mainly those with not whole lot of cash to throw around.  In a recent blog post a small startup explains its experience with firebase. I have also read something similar about a year ago. […]