- If you have installation or compilation issues with this project, please see our debugging guide
First, clone the repo via git and install dependencies:
git clone --depth 1 --single-branch https://github.com/liath/cloudrdp
cd cloudrdp
yarn
Start the app in the dev
environment:
yarn start
To package apps for the local platform:
yarn package
This is the bare minimum to actually do what I set out to do. The app currently is not very configurable, so you'll need to upload the keypairs for your EC2 instances to SSM ParameterStore for anything to work. Something like this should work:
aws ssm put-parameter --type SecureString --name '/cloudrdp/keys/ec2-key' --value file://~/.ssh/ec2-key.pem
Outside of gettings the keys where they ought to be, everything should just work. :)