-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stilus.yml
49 lines (47 loc) · 1.18 KB
/
.stilus.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
paths:
config: "./data/config"
database: "./data/db"
themes: "./data/themes"
api:
http_server:
enable: true
address: "0.0.0.0"
port: 8080
#max_connections: 1000
#max_requests: 5000
#workers: 10
pid_file: "./data/stilus.pid"
log_file: "./data/stilus.log"
dashboard:
web_server:
host: "0.0.0.0"
port: 8090
build:
dir: "./dist"
css_source_map: true
pages:
index: # Index page
entry: "src/dashboard/Stilus.js" # Entry script for the page
template: "public/index.html" # Html template files
filename: "index.html" # Output file: ./dist/index.html
tests:
coverage: true
coverage_match:
- "src/dashboard/**/*.{js,vue}"
- "!**/node_modules/**"
- "!**/vendor/**"
coverage_reporters:
- html
- json
coverage_dir: "./coverage/dashboard"
module_name_mapper:
^@/(.*)$: "<rootDir>/src/dashboard/$1"
less|css: "<rootDir>/tests/dashboard/assetsTransformer.js"
module_file_extensions:
- "js"
- "jsx"
- "ts"
- "tsx"
- "vue"
test_match:
- "**/tests/dashboard/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"