Easy workflow for plugins #150
rabbibotton
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I hope to do some video demos soon to show the workflow of using components
(ql:quickload :clog/tools)
(clog-tools:clog-builder)
Choose new application template - choose one, for now Basic HTML and we call it firstapp
(clog:shutdown)
Edit the firstapp .asd file to include and any plugins - I will add all three I posted so far
(asdf:defsystem #:firstapp
:description "New CLOG System"
:author "some@one.com"
:license "BSD"
:version "0.0.0"
:serial t
:depends-on (#:clog #:clog-typeahead #:clog-terminal #:clog-ace) ; add clog plugins here as #:plugin for run time
:components ((:file "firstapp")))
(asdf:defsystem #:firstapp/tools
:depends-on (#:firstapp #:clog/tools #:clog-typeahead/tools #:clog-terminal/tools #:clog-ace/tools)
:components ()) ; add clog plugins here as #:plugin/tools for design time
(ql:quickload #:firstapp/tools)
(clog-tools:clog-builder)
All three plugins are available to add now to new panels for your project.
Beta Was this translation helpful? Give feedback.
All reactions