Skip to content

Add Nav Button to this Github Repo

Alex Narvey edited this page Nov 1, 2024 · 10 revisions

To make it convenient to check this Wiki and such you can add a navigation button in the Admin page of your BlueSky instance to take you back to this canonical repo (as per the illustration below).

  1. ssh into your Docker Droplet

  2. Install nano into docker bluesky

docker exec -it bluesky bash

apt update

apt install nano

  1. nano /usr/local/bin/BlueSky/Server/html/hooks/agent-links.php

  2. copy the following into the end of that file:

<ul class="nav navbar-nav">

<a href="https://github.com/BlueSkyTools/BlueSkyConnect" class="btn btn-info navbar-btn visible-sm visible-md visible-lg"><i class="glyphicon glyphicon-info-sign"></i> Github Repo</a>

<a href="https://github.com/BlueSkyTools/BlueSkyConnect" class="visible-xs btn btn-info navbar-btn btn-lg"><i class="glyphicon glyphicon-info-sign"></i> Github Repo</a>

</ul>

  1. Write Out - Control O to save the file.