Bootstrap to get a full ajenti plugin dev environment up and running. Ajenti dev commands will be wrapped and executed inside a docker image.
DON'T name your plugin with an underscore in the name. At the moment this will break Ajenti.
So instead "test_plugin" name your plugin "test plugin".
Create the docker image that is used to run the development environment.
./project.sh --setup
- Create plugin:
./project.sh -n "Plugin"
- Build plugin:
./project.sh -b "Plugin"
- Run ajenti with plugin:
./project.sh -r "Plugin"
Or build and run with one command: ./project.sh -b -r "Plugin"
- "?" Help in script.
- Improve script to pass command args directly to
ajenti-dev-multitool
in the container.