-
-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support MS Power Apps scheme #21
Comments
What VM are you planning on using? Can you use a Linux distro or need to use something specific like a Microsoft OS? Since it's Ruby code it should work fine as long as the Ruby runtime is available. If you're comfortable with and also able to use Linux let me know and I can share with you an easy to use (almost "packaged") Docker image to run. Just FYI Ruby images aren't known for being lightweight, but I think it shouldn't be too bad and it's an easy way to run it and have the Docker daemon handle the restarts, errors, logging, etc. If you're not into the Docker option then I'd recommend something along the lines of:
|
I may or may not be understanding the use case exactly right, but I think what you want work with is changing the schema handled by the That PR was just a very quick and dirty experiment so I'm a bit skeptical of whether it will work. Let me know if it does so I can implement a more permanent solution to support these in the codebase. Otherwise talk me through the situation you want to achieve a bit more in detail to see if I can help. Perhaps something like:
|
I'm using Rocky Linux (https://rockylinux.org/), from what I understand is like CentOS (the free version of RedHat). I managed to get things up and running (I went the manual route as I have no experience with docker), just had to fight with versions (I had ruby 3.1.2 for example) and open up the firewall a little. Other than that, in my quick testing, things are working as expected. As to what I'm waiting to do, you pretty much got it. Since outlook doesn't support linking to |
That's great to hear 👍🏼
Sounds good then. If you can, let me know if what's on |
Hello,
I'm pleased to hear that this still works. I'm just wondering, do you have any basic setup instructions (OS already installed) for setting up a standalone server and what the requirements are? I see you have details for Heroku, however they stopped their free plan and at this point I thought that I may as well put this in a VM on a internal company server.
At one point I figured that I would do a little php script (see below) that would handle another issue that we have (we can't view links in outlook that starts with
ms-mobile-apps:///
for some stupid reason) but thought that there may be a better way and want to try this out.<?php function Redirect($url, $permanent = false) { header('Location: ' . $url, true, $permanent ? 301 : 302); exit(); } Redirect("ms-mobile-apps:///providers/Microsoft.PowerApps/apps/".trim($_SERVER['QUERY_STRING']), false); ?>
I guess the other thing I should ask, I guess it would be easy for me to edit the source code so that I can use the
ms-mobile-apps:///
protocol instead ofhttps
?Looking forward to having some fun with this :)
The text was updated successfully, but these errors were encountered: