Leapfrog Bulletin Board is a Web App that helps to build an interactive Kiosk.
- Embed Google slide
- Queue YouTube videos
- Embed websites
- Click here on
- Enter desired App Name
- Click on “Deploy for Free” button
- Click on “Manage App” button
- Overview of app appears. Click on “Heroku Postgres” link
- Postgres “Connection Settings” appears. Note down these credentials
- Go back to bulletin board app on Heroku Dashboard
- Click on “Settings” tab
- Click on “Reveal Config Vars”
- Now enter Postgres Connection Settings of step 7 (DB_HOST, DB_NAME, DB_USER, DB_PASSWORD, DB_PORT) in Key, Value pair
- Install Heroku Command Line https://devcenter.heroku.com/articles/heroku-command-line
- Open Terminal
$ heroku login
$ heroku run python manage.py migrate --app my-bulletin-board
$ heroku run python manage.py createsuperuser --app my-bulletin-board
$ git clone [email protected]:leapfrogtechnology/LF-Bulletin-board.git
$ cd LF-Bulletin-board
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -r requirements.txt
$ python3 manage.py makemigrations
$ python3 manage.py migrate
$ python3 manage.py createsuperuser
$ # Comment lf_kiosk/settings.py line number 87 to 92 and uncomment line number 83, 84 to use SQLite database instead of Postgres
$ python3 manage.py runserver
- Create slide using Google Slide
- Goto File → Publish to the web
- Goto Embed tab
- Choose Start slideshow as soon as the player loads and Restart the slideshow after the last slide
- Click on publish, HTML embed appears
- Just copy src of the <iframe> tag Eg. https://docs.google.com/presentation/d/1FWK0B0PBavrqYKFXbS2JwPn05SwKNsDz9e63Rs0_fuY/embed?start=true&loop=true&delayms=5000
- Open bulletin board dashboard
- Click on Kiosks
- Click on ADD KIOSK
- Paste the URL and click on Save Note: If you make changes in slide. Make sure you add new Google Docs URL or just update delayms value to new value. If this is not done slide changes in bulletin board will not reflected.
- Goto bulletin board dashboard
- Click on Kiosk
- Click on ADD KIOSK
- Enter URL of the website URL and click on Save
- Go to Leapfrog bulletin board dashboard
- Click on YouTubes
- Click on ADD YOUTUBE
- Paste YouTube video URL
- Click on save Repeat the steps to add more videos in play list
- Go back to dashboard
- Click on “Schedules”
- Click on “ADD SCHEDULE”
- Enter Start time and End time
- Click on Save
- Leapfrog Bulletin Board is licensed under th MIT license. See License File for more information.