Henry Skrtich
Henry Skrtich
I took a look at lunasea and how it integrate into other apps and I have a couple of thoughts. It looks like loading static assets are not a problem...
Yes please
Be aware, I get around needing passwords by installing the ssh key into the system and setting up `~/.ssh/config` file ``` # Setup SSH keys mkdir -p ~/.ssh/ cp /setup/RP-readonly_rsa.pem...
It works with the internal GIT as well.
Currently i have a script that checks if the version number has changed and if so it deletes the repos/index files and replaces the database with the one from the...
Any movement on this? Having a simple /ping endpoint is usefull for monitoring.
Awesome, thank you for the update
Id like to try to take a stab at auto showing a web login page if the server is behind a zero trust config. This would allow users to login...
Yes, its normal to redirect any request including a preflight/OPTIONS request since at that point any request isnt authenticated. The header will need to get set for *any* request sent...
You can do the same thing with a custom parser. ``` $response = \Httpful\Request::get($url) ->parseWith(function($body) { return json_decode(substr($body, 4)); }) ->send(); ```