Discourse Plugins entwickeln - Teil 4 - Git einrichten

Vorheriges Tutorial: Developing Discourse Plugins - Part 3 - Add custom site settings


Jetzt, da Ihr Plugin immer ausgefeilter wird, ist es Zeit, auch bei der Entwicklung anspruchsvoller vorzugehen.

Wir empfehlen Ihnen, git als Versionskontrolle für Ihr Plugin zu verwenden. Wir empfehlen Ihnen außerdem, github zu nutzen, um Ihren Plugin-Code mit anderen zu teilen.

Erstellen Ihres Git-Repos

Sobald Sie Ihr Github-Konto erstellt haben, besuchen Sie diese URL, um ein neues Repository zu erstellen. Sie können es nennen, wie Sie möchten, aber im Allgemeinen ist etwas, das mit discourse- beginnt, gut. Stellen Sie sicher, dass das Repository öffentlich ist. So sah mein Bildschirm aus:

Erstellen Ihres lokalen Arbeitsordners

An dieser Stelle erstelle ich ein lokales Verzeichnis auf meinem Computer, um das Plugin aufzunehmen. Ich lege meins normalerweise unter ~/code ab, aber Sie können es überall auf Ihrem Computer ablegen:

mkdir -p ~/code/discourse-plugin-test
cd ~/code/discourse-plugin-test

Folgen wir nun den Anweisungen von github, um das Repo mit einer README zu initialisieren:

echo "# discourse-plugin-test" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:eviltrout/discourse-plugin-test.git
git push -u origin master

Erstellen Sie schließlich eine plugin.rb-Datei für Ihr Plugin, wie in Teil 1 erklärt. Für dieses Beispiel habe ich einfach eine Dummy-Datei erstellt:

plugin.rb

# name: discourse-plugin-test
# about: Zeigt, wie Git eingerichtet wird
# version: 0.0.1
# authors: Robin Ward

Erstellen eines Symlinks

Da Sie unserem Entwicklerhandbuch gefolgt sind, sollten Sie eine Kopie von Discourse auf Ihrem Computer ausgecheckt haben. Ich habe meine unter ~/code/discourse ausgecheckt, aber auch hier hätten Sie es überall platzieren können, und dies sollte immer noch funktionieren, wenn Sie den folgenden Code entsprechend anpassen:

cd ~/code/discourse/plugins
ln -s ~/code/discourse-plugin-test .

Der obige Code hat einen symbolischen Link zwischen Ihrem Discourse-Code und Ihrem Plugin-Ordner erstellt. Starten Sie Ihren Entwicklungsserver neu, und Sie sollten feststellen, dass Ihr Plugin funktioniert!

Der Vorteil dieses Setups ist, dass Sie Ihr Plugin einfach bei github einchecken können und sich keine Gedanken über die Discourse-Codebasis machen müssen, in der es sich befindet. Ihre Änderungen werden auf das Plugin selbst beschränkt. Wenn Sie Discourse-Code bearbeiten müssen, können Sie dies immer noch tun, aber git wird die Änderungen separat verfolgen!

Ich empfehle, ein Editorfenster für Ihren Plugin-Codebestand und eines für Discourse selbst zu verwenden. Es ist einfacher, wenn Sie sie als zwei verschiedene Dinge betrachten.


Mehr in der Serie

Teil 1: Plugin-Grundlagen
Teil 2: Plugin-Outlets
Teil 3: Site-Einstellungen
Teil 4: Dieses Thema
Teil 5: Admin-Schnittstellen
Teil 6: Akzeptanztests
Teil 7: Veröffentlichen Sie Ihr Plugin


Dieses Dokument wird versioniert - schlagen Sie Änderungen auf github vor.

23 „Gefällt mir“
  • After many frustrating attempts, found out that apparently ln -s does not work in a Windows environment, or atleast not how it should.
  • ln -s essentially just copy-pasted the plugin folder into the discourse/plugins folder
  • Apparently, in Windows the way to create symbolic links is to use the mklink command in command prompt (run as administrator, and this command does not natively run in Windows PowerShell either).
  • Using the mklink command (with both arguments /d and /h), although the created symbolic link could be seen present in the directory, the plugin was not working with discourse (and also not showing in /admin/plugins).
  • I tried this multiple times with restarting the rails server, deleting the tmp folder, but to no avail.

@eviltrout, any idea what could I be doing wrong?

2 „Gefällt mir“

I assume you are using Vagrant on windows? If you can’t get the symbolic links sent over, I think the only way you can do it is to copy the plugin into discourse/plugins manually and work from there. It should work as long as you are not making changes to the core discourse app at the same time, which confuses git.

When your plugin is ready, you’ll want to copy it to another directory to package it up for git.

1 „Gefällt mir“

Yeah, OK this should be fine too.
Although the OCD side of me, much preferred the comparatively “cleaner” symbolic links method.

Anyway, Thanks.

@AhmadF.Cheema I had similar problems with the symlinking using Vagrant 1.9.8 on Linux, and a completely standard Discourse Vagrant development environment as per the docs.

The problem is simple when you look into it. From the scope of inside the Vagrant VM, the destination of the symlink is not a valid path. Try executing the command ls -al in the plugins directory inside your VM (in a standard install this is at /vagrant/plugins)

vagrant@discourse:/vagrant/plugins$ ls -al
total 36
drwxr-xr-x 1 vagrant vagrant 4096 Oct 22 09:08 ./
drwxr-xr-x 1 vagrant vagrant 4096 Oct 22 09:10 ../
drwxr-xr-x 1 vagrant vagrant 4096 Sep  7 19:51 discourse-details/
drwxrwxr-x 1 vagrant vagrant 4096 Oct 21 13:56 discourse-narrative-bot/
drwxr-xr-x 1 vagrant vagrant 4096 Oct 21 13:56 discourse-nginx-performance-report/
drwxr-xr-x 1 vagrant vagrant 4096 Sep  7 19:51 discourse-plugin-outlet-locations/
drwxrwxr-x 1 vagrant vagrant 4096 Oct 21 13:56 discourse-presence/
lrwxrwxrwx 1 vagrant vagrant   55 Oct 22 09:08 my-basic-plugin -> /home/marcus/code/discourse/my-basic-plugin
drwxr-xr-x 1 vagrant vagrant 4096 Oct 21 13:56 lazyYT/
drwxr-xr-x 1 vagrant vagrant 4096 Oct 21 13:56 poll/

As you can see, the path /home/marcus/code/discourse/my-basic-plugin cannot possibly be accessible from the VM because it doesn’t exist inside the VM!

The solution is to delete the externally created symlink and set up a separate shared folder in Vagrant, by adding a line to your Vagrantfile:

config.vm.synced_folder "/home/marcus/code/my-basic-plugin",  "/my-basic-plugin"

Then restart the Vagrant VM: vagrant halt && vagrant up so that this change is picked up

Now, when you enter your VM via SSH using vagrant ssh you can create a symlink inside the VM:

cd /vagrant/plugins
ln -s /my-basic-plugin .

Now you can develop in a neatly isolated local folder, and have the neat Git workflow that @eviltrout describes, and the symlinking happens inside the VM. Note that outside the VM, the symlink will be broken - but this shouldn’t matter for our purposes.

3 „Gefällt mir“

If you are developing on Linux using our docker based dev is way simpler

4 „Gefällt mir“

Windows symlinks are different from Unix symlinks, thus your confusion. Windows synlinks are very fussy, requiring particular versions of OS to support and sometimes applications must be written to be aware of this. In other words, the stars must line up perfectly for windows symlinks to work.

A hard link (/H) I dont think work with directories. Your /D makes a symlink on a directory, trumping your /H (which is used to create a hard link to a file, not a directory).

Confusing? Welcome to Windows.

There are four types of links in Windows:

  • MKLINK (no flags) – symbolic link to file
  • MKLINK /H – hard link to file
  • MKLINK /D – symbolic link to directory
  • MKLINK /J – junction (i.e. hard link) to directory

What you need is is a junction which is Windows-speak for hard link to a directory.

Do MKLINK /J to your plugins directory and the system will treat it as a subdirectory. In fact it won’t know otherwise. Beware, it is not common to have a Windows directory (folder in Windows-speak) to point to the same place as another directory, so you’ll get confused very easy and forget that both are the same things.

That’s why you’ll need to run the command in Administrator mode, otherwise Windows won’t let you create the directory junction.

4 „Gefällt mir“

Thanks for the info regarding Windows symlinks @schungx - it should be of help to the OP.

The workaround I described should work fine on any platform, since the symlinks happen inside the (Ubuntu) vagrant box

M

Yup, you’re right. If you can avoid it, avoid messing with Windows. Windows is very picky and may choose to die or go wrong at the most unfortunate moment…

Work for me! 2018-4-29

1. I put discourse & my plugin in Desktop

instead of put 1c7-plugin under discourse/plugin

2. and put a “alias” into discourse/plugins folder

alias is a macOS concept,
it’s the same things as ln -s command

3. Discourse correctly load the plugin

(After reboot server with rails s)

4. Now they are separated, use git to manage code is much easier

Thanks!

Symlink kann in der macOS-Docker-Einrichtung nicht zum Laufen gebracht werden. Die Plugins funktionieren nur, wenn sie direkt in den Plugins-Ordner kopiert werden.