DEV Community

Discussion on: How to create a Discourse plugin

Collapse
 
marcus_baw profile image
Dr Marcus Baw

Great article! Thanks so much for putting all this in one place.

One small addition - if developing on Discourse in Docker, the symlink needs to have an absolute path, not a relative one.

ln -s ../../notebook notebook # won't work
ln -s ~/mycodefolder/notebook notebook # will work