https://github.com/fraoustin/redmine_js_sequence
add js-sequence graph in redmine by macro
https://github.com/fraoustin/redmine_js_sequence
redmine redmine-plugin
Last synced: 8 months ago
JSON representation
add js-sequence graph in redmine by macro
- Host: GitHub
- URL: https://github.com/fraoustin/redmine_js_sequence
- Owner: fraoustin
- Created: 2019-12-07T10:03:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-22T15:29:32.000Z (over 1 year ago)
- Last Synced: 2025-02-22T16:25:25.364Z (over 1 year ago)
- Topics: redmine, redmine-plugin
- Language: Ruby
- Size: 142 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Redmine Js Sequence
## Summary
Add [JsSequence](https://bramp.github.io/js-sequence-diagrams/) in [Redmine](http://www.redmine.org/)
## Usage
You can add your js-sequence code in wiki or issue by editor
```
my text with my code
{{sequence
Andrew->China: Says Hello
Note right of China: China thinks\nabout it
China-->Andrew: How are you?
Andrew->>China: I am good thanks!
}}
```
## Installation
```
$ cd redmine/plugins
$ git clone https://github.com/fraoustin/redmine_js_sequence.git
```
restart Redmine
I had an issue with Redmine 6.0: the redmine/public folder was empty. I manually created the missing directories.
```
$ cd redmine/public/plugin_assets
$ mkdir redmine_js_sequence
$ cd redmine_js_sequence
$ ln -s ln -s ../../../plugins/redmine_js_sequence/assets/javascripts javascripts
$ ln -s ln -s ../../../plugins/redmine_js_sequence/assets/stylesheets stylesheets
```