You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the current manual process for building and deploying the rest api:
Set the AWS_PROFILE environment variable
Update the version number in backend/scripts/build.sh
Run build.sh to build a docker image and push it to dockerhub
Open a PR to update the version number in the github repo
Use the backend/scripts/ssh-server script to start an ssh session in an ec2 instance
update the version number in partner-finder/start.sh
Pull the docker image from dockerhub
stop and remove the running container with sudo docker container stop <container name> and sudo docker container rm <container name> you can get the container name by running sudo docker ps
start a new container with the updated api with sudo ./start.sh
We should automate this in a github action that runs after a PR is merged into the main branch
If you want to work on this talk to @galbwe to get access to AWS credentials.
The text was updated successfully, but these errors were encountered:
This is the current manual process for building and deploying the rest api:
backend/scripts/build.sh
build.sh
to build a docker image and push it to dockerhubbackend/scripts/ssh-server
script to start an ssh session in an ec2 instancepartner-finder/start.sh
sudo docker container stop <container name>
andsudo docker container rm <container name>
you can get the container name by runningsudo docker ps
sudo ./start.sh
We should automate this in a github action that runs after a PR is merged into the main branch
If you want to work on this talk to @galbwe to get access to AWS credentials.
The text was updated successfully, but these errors were encountered: