• 0 Posts
  • 10 Comments
Joined 11 months ago
cake
Cake day: August 7th, 2023

help-circle

  • That’s a valid point I hadn’t considered. Based on a cursory look at how bail bond works, if you go with a bondsman you’re out a certain amount regardless if you show up to court or not.

    So if he paid the 200k he’d get almost all of it back after court, minus whatever processing fees the court has. If he goes with the bondsman he forks over 10% and the bondsman covers the other 90%, but he would get nothing back after court. The bondsman gets the full refund and keeps it all.

    I can’t imagine the return on that would move the needle much for someone as “rich” as he is. I don’t know though, and I’ll fully admit this is pure speculation.







  • You can already do this. You can specify an env file or use the default .env file.

    The compose file would look like this:

    environment:
          PUBLIC_RADARR_API_KEY: ${PUBLIC_RADARR_API_KEY}
          PUBLIC_RADARR_BASE_URL: ${PUBLIC_RADARR_BASE_URL}
          PUBLIC_SONARR_API_KEY: ${PUBLIC_SONARR_API_KEY}
          PUBLIC_SONARR_BASE_URL: ${PUBLIC_SONARR_BASE_URL}
          PUBLIC_JELLYFIN_API_KEY: ${PUBLIC_JELLYFIN_API_KEY}
          PUBLIC_JELLYFIN_URL: ${PUBLIC_JELLYFIN_URL}
    

    And your .env file would look like this:

    PUBLIC_RADARR_API_KEY=yourapikeyhere
    PUBLIC_RADARR_BASE_URL=http://127.0.0.1:7878
    PUBLIC_SONARR_API_KEY=yourapikeyhere
    PUBLIC_SONARR_BASE_URL=http://127.0.0.1:8989
    PUBLIC_JELLYFIN_API_KEY=yourapikeyhere
    PUBLIC_JELLYFIN_URL=http://127.0.0.1:8096
    

    This is how I do all of my compose files and then I throw .env in .gitignore and throw it into a local forgejo instance.