Thiritin / open-signage

A digital signage solution built on Laravel, Inertia.js, and Vue.js. Open Signage serves webpages for digital signage screens, running on Chrome in kiosk mode. It features dynamic data updates via Socketi and allows users to create playlists for rotating announcements and media presentations.
GNU General Public License v3.0
24 stars 5 forks source link

Vite manifest not found at: #6

Open zaakhid opened 5 hours ago

zaakhid commented 5 hours ago

I have deployed the open-signage on our domain https://ezscreen.ezsolutions.co.in hosted on GoDaddy.

I'm able to access and logged into the admin panel and able to create a playlist with 2 screens, however I'm unable to access the URL that will be used to access the screen.

Please refer to the following screenshot:

image

Please guide me to how to access the URL that will be used to display the screen created for the playlist.

How to deploy the whole project on GoDaddy hosting server??

For your reference please refer to the admin panel:

image

Below is my .env file, as I am not using the redis:

APP_NAME=EZScreen APP_ENV=local APP_KEY=basexxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx APP_DEBUG=true APP_URL=https://ezscreen.ezsolutions.co.in

LOG_CHANNEL=stack LOG_DEPRECATIONS_CHANNEL=null LOG_LEVEL=debug

DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=xxxxxxxxxxxx DB_USERNAME=xxxxxxxxxxxxxxx DB_PASSWORD=xxxxxxxxxxxxxxxx

BROADCAST_DRIVER=reverb CACHE_DRIVER=file FILESYSTEM_DISK=local QUEUE_CONNECTION=sync SESSION_DRIVER=file SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_HOST=127.0.0.1 REDIS_PASSWORD=null REDIS_PORT=6379

MAIL_MAILER=smtp MAIL_HOST=mailpit MAIL_PORT=1025 MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS="hello@example.com" MAIL_FROM_NAME="${APP_NAME}"

AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_DEFAULT_REGION=us-east-1 AWS_BUCKET= AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=app-id PUSHER_APP_KEY=app-key PUSHER_APP_SECRET=app-secret PUSHER_HOST=soketi PUSHER_PORT=6001 PUSHER_SCHEME=http PUSHER_APP_CLUSTER=mt1

VITE_APP_NAME="${APP_NAME}" VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" VITE_PUSHER_HOST="localhost" VITE_PUSHER_PORT="${PUSHER_PORT}" VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

This is the project in the opensignage /resources/js/Projects folder

VITE_PROJECT_PATH="EF28"

If set, all screen urls will need ?shared_secret=SHARED_SECRET to be accessed

APP_SHARED_SECRET=""

Telegram bot will send notifications to this chat

TELEGRAM_BOT_TOKEN="" TELEGRAM_CHAT_ID=""

Also, how to ask/display a password or code to access screens???

Thanks!

zaakhid commented 1 hour ago

Hi,

I have installed everything now, and the above error is gone.

Finally when I'm running the https://ezscreen.ezsolutions.co.in/screens/splash1 in the browser it's not displaying anything. Though I had created a playlist with 2 items added and assigned it to a Screen.

Please refer to the below screenshot:

image

Also, is it necessary to install the REDIS & Pusher for notification so as to make the whole project work??

Thanks!