-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.py
30 lines (22 loc) · 1.01 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""
.. automodule:: config
:platform: Windows
:synopsis: Configure the environment for running EventStudio.
.. moduleauthor:: EventHelix.com Inc.
"""
import os
# Path for identifying where the EventStudio executable is installed. Set to None
# for the script to find the EventStudio path from the installed vscode extension.
eventStudioPath = None
# Specifies the path where Visual Studio code extensions are installed in Windows
# (You do not need to change this unless your Visual Studio Code extensions are installed
# at a different path.)
vsCodeExtensions = r'%USERPROFILE%\.vscode\extensions'
# The EventStudio command line to be used to generate the sequence diagrams.
eventStudioCommandLine = r'{eventStudio} build project.scn.json'
# The indentation to be used in generating the FDL file.
indent = ' ' * 4
#theme template to use for generated sequence diagram. Set it to None to use
# the default theme. The available themes are:
# aqua, business, chocolate, pastel, rainbow, sunrise
themeTemplate = 'pastel'