Hi,
I've created a new custom macro following the link - https://developer.atlassian.com/server/confluence/creating-a-wikipedia-macro/ .
According to the instructions in the above link, the macro is tested using the "atlas-run" command which installs a confluence locally and runs the macro.
Now my requirement is - I want to install it to my existing confluence application. Can someone please suggest how it can be done ?
Thanks,
Neha
Hi @Neha Sharma,
Either you can install the developed custom macro through:
In Confluence Admin GUI:
Confluence Administration --> Manage apps --> Upload App --> Choose your add-on jar file and install
(or)
In the command line:
atlas-install-plugin -p 80 --server <your_server_url> --context-path “<if_contextpath_any>” --username <admin_user> --password <admin_password>
I recommend to first install and check your macro in the development environment.
Thanks,
Ram.
Thanks @Rambabu Patina _Appfire_ for that quick response. I'll try it. I thought that method was only for uploading add-ons or plugins.
Thanks again. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Neha Sharma,
a) If you want to build the app for a production instance, you should use "atlas-mvn package" to create a build.
b) If you want to use a standalone instance for development, I suggest to configure quick-reload -> https://developer.atlassian.com/server/framework/atlassian-sdk/automatic-plugin-reinstallation-with-quickreload/ to speed up your development.
Best, Tobias
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.