-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
48 lines (45 loc) · 1.4 KB
/
config.ts
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
import { Config } from "simpleg";
const config: Config = {
presentation: `
███████╗██████╗ ██╗ ██████╗██╗ ██╗
██╔════╝██╔══██╗██║██╔════╝██║ ██╔╝
█████╗ ██████╔╝██║██║ █████╔╝
██╔══╝ ██╔══██╗██║██║ ██╔═██╗
███████╗██║ ██║██║╚██████╗██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝ ╚═════╝╚═╝ ╚═╝
`,
templatesFolder: "./templates",
folders: [
{
name: "Linux",
project: {
templates: {
local: [
{
name: "\x1b[1m\x1b[36mBSPWM\x1b[37m\x1b[0m",
path: "bspwm",
},
],
},
},
},
{
name: "Web",
project: {
templates: {
local: [
{
name: "\x1b[1m\x1b[36mSpring Boot - Security\x1b[37m\x1b[0m",
path: "security",
},
{
name: "\x1b[1m\x1b[36mSpring Boot - Simple Microservice\x1b[37m\x1b[0m",
path: "simplemicroservice",
}
],
},
},
},
],
};
export default config;