Jadehawk

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by Jadehawk

  1. Done. Template Updated. @SmartPhoneLover Mention I can move the variables to the template. But you still need to created a physical file ".env" it stores the "APP_KEY=" and when running the required command: In UnRaid Console : docker exec -it servas php artisan key:generate --force or in the Container's Console: php artisan key:generate --force If the .env local file doesn't exist it will fail to generate the APP_KEY and you will see "500 | Server Error" when accessing servas GUI. So the at the very least the .env file must contain the line : APP_KEY= If you want to keep using MYSQL/MariaDB your .env file should look like this: APP_KEY= # MySQL DB_CONNECTION=mysql DB_HOST=db DB_PORT=3306 DB_DATABASE=servas_db DB_USERNAME=servas_db_user DB_PASSWORD=password
  2. @Squid Thank you for fixing this. I didn't realized how useful this plugin was until I updated to 6.10.2 and the plugin failed to work properly.. All good now with your fork. Thanx Again
  3. Still Learning and appreciate the input. thank you
  4. Overview: Support for Servas Docker Container Application: Servas - https://github.com/beromir/Servas Docker Hub: https://hub.docker.com/r/beromir/servas GitHub: https://github.com/beromir/Servas Documentation: https://github.com/beromir/Servas For Any Non UnRaid related question please go to projects Home This is not my project. I just created the template. All credits go to: Beromir Description (from Dev): A self-hosted bookmark management tool. Servas is based on Laravel and Inertia.js and uses Tailwind CSS and Svelte for the frontend. It still needs a lot of work but developer is active and available at github Requirements: MySQL / Mariadb Database already running and available. Create a User and DB for servas on your MySQL/Mariadb Instance. Created config file (filename is : ".ENV" just a dot plus env ) and place inside servas config folder (/mnt/user/appdata/servas/) the content as follow: APP_NAME=Servas APP_ENV=production APP_KEY= APP_DEBUG=false APP_URL= DB_CONNECTION=mysql DB_HOST=**** Enter IP/Hostname of mysql/mariadb **** DB_PORT=3306 DB_DATABASE=**** name you assigned to servasdb ex. servasdb **** DB_USERNAME=**** username allowed to access servasdb **** DB_PASSWORD=**** password for user allowed to access servasdb **** Once Container is running open the container console run the following 2 commands one at a time: php artisan migrate php artisan key:generate Restart container and you should have acces to WebUI at port:8086 go to http://UnraidIP:8086/register to create a user.
  5. Overview: Support for Plaxt Docker Container Application: Plaxt - https://github.com/xanderstrike/goplaxt Docker Hub: https://hub.docker.com/r/xanderstrike/goplaxt GitHub: https://github.com/xanderstrike/goplaxt Documentation: https://github.com/XanderStrike/goplaxt For Any Non UnRaid related question please go to projects Home This is not my project. I just created the template. All credits go to: XanderStrike Description (from Dev): Plex provides webhook integration for all Plex Pass subscribers, and users of their servers. A webhook is a request that the Plex application sends to third party services when a user takes an action, such as watching a movie or episode. You can ask Plex to send these webhooks to this tool, which will then log those plays in your Trakt account. This is a full rewrite of my somewhat popular previous iteration. This time it's written in Go and deployable with Docker so I can run it on my own infrastructure instead of Heroku.