The app is deployed in a docker container. There is a file naed reusefull.env in home\ec2-user folder. The ec2-user folder has a subfolder named .docker.
- Open a command prompt on your computer
- SSH to the EC2 Instance
- The command to do that is visible in the EC2 Instance in the AWS Console, click on the Connect button
- The command will look like ssh -i "reusefull.pem" ...
- Note that you need the pem, aka private key, on your local computer in the directory where you run the above ssh command
- The command to do that is visible in the EC2 Instance in the AWS Console, click on the Connect button
- Run the docker pull command:
- https://github.com/codeforkansascity/reusefull-web-app/pkgs/container/reusefull-web-app
- docker pull ghcr.io/codeforkansascity/reusefull-web-app:v0.1.11
- you will need to change the version at the end of the above command from v0.1.11 to your current version
- docker pull ghcr.io/codeforkansascity/reusefull-web-app:v0.1.11
- https://github.com/codeforkansascity/reusefull-web-app/pkgs/container/reusefull-web-app
- Stop/start/rebuild container (image id must be last)
- docker container stop reusefull
- docker container rm reusefull
- docker run --restart always -d -p 8080:80 --env-file reusefull.env --name reusefull ghcr.io/codeforkansascity/reusefull-web-app:v0.1.11
- you will need to change the version at the end of the above command from v0.1.11 to your current version
- Copy this repo locally
- Set some environment variables. The only way I have figured out so far to do this on Windows is to edit the Windows Environment variables one at a time. We have a test database you can connect to. Many of the parm values don’t matter but are needed for the app to start. Add the following “System variables” in your Environment variables. The values for the variables will be provided to you as needed.
- AUTH0_CLIENT_ID reusefull
- AUTH0_CLIENT_SECRET reusefull
- AUTH0_LOGOUT_URL reusefull
- AUTH0_REDIRECT_URL reusefull
- DGRAPH_TOKEN reusefull
- HERE_TOKEN reusefull
- MYSQL_DB xxx
- MYSQL_HOST xxx.xxx.xxx
- MYSQL_PASS xxx
- MYSQL_USER xxx
- Open a terminal in your IDE with the code (possible Visual Studio Code)
-
Go run .
-
Yes, the above is the word “go” followed by a space, then “run” then a space then a period. The period tells go to compile and run all the code.
-
You should get a message in your terminal that says “Successfully started”
-
Then you can open a browser to http://127.0.0.1 and you should see the site. Click on the Donors tab and select Donate - this will cause a database connection attempt.
-
In DBeaver, you may also need to change Driver Properties (allowPublicKeyRetrieval to true and useSSL=false )
-