-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathreliverse.ts
124 lines (112 loc) · 3.35 KB
/
reliverse.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { defineConfig } from "@reliverse/config";
export default defineConfig({
// RELIVERSE CONFIG (https://docs.reliverse.org/cli)
// This config file is generated by @reliverse/cli
// Restart the CLI to apply your config changes
$schema: "https://reliverse.org/schema.json",
// General project information
projectName: "relivator",
projectAuthor: "unknown",
projectDescription:
"The Relivator Next.js template serves as the foundation for your eCommerce platform, helping you create efficient, engaging, and profitable online stores. Relivator enhances any eCommerce with the power of modern Next.js, React, TypeScript, Tailwind, and more.",
version: "1.3.0",
projectLicense: "MIT",
projectState: "creating",
projectRepository: "https://github.com/relivator",
projectDomain: "https://relivator.com",
projectCategory: "unknown",
projectSubcategory: "unknown",
projectTemplate: "unknown",
projectArchitecture: "unknown",
repoPrivacy: "unknown",
projectGitService: "github",
projectDeployService: "vercel",
repoBranch: "main",
// Primary tech stack/framework
projectFramework: "nextjs",
projectPackageManager: "bun",
projectRuntime: "bun",
preferredLibraries: {
stateManagement: "zustand",
formManagement: "react-hook-form",
styling: "tailwind",
uiComponents: "shadcn-ui",
testing: "bun",
authentication: "next-auth",
database: "prisma",
api: "trpc",
},
monorepo: {
type: "none",
packages: [],
sharedPackages: [],
},
// List dependencies to exclude from checks
ignoreDependencies: [],
// Custom rules for Reliverse AI
customRules: {},
// Project features
features: {
i18n: false,
analytics: true,
themeMode: "dark-light",
authentication: true,
api: true,
database: true,
testing: false,
docker: false,
ci: false,
commands: [],
webview: [],
language: ["typescript"],
themes: ["default"],
},
// Code style preferences
codeStyle: {
dontRemoveComments: true,
shouldAddComments: true,
typeOrInterface: "type",
importOrRequire: "import",
quoteMark: "double",
semicolons: true,
lineWidth: 80,
indentStyle: "space",
indentSize: 2,
importSymbol: "~",
trailingComma: "all",
bracketSpacing: true,
arrowParens: "always",
tabWidth: 2,
jsToTs: false,
cjsToEsm: false,
modernize: {
replaceFs: false,
replacePath: false,
replaceHttp: false,
replaceProcess: false,
replaceConsole: false,
replaceEvents: false,
},
},
// Settings for cloning an existing repo
multipleRepoCloneMode: false,
customUserFocusedRepos: [],
customDevsFocusedRepos: [],
hideRepoSuggestions: false,
customReposOnNewProject: false,
// Set to false to disable opening the browser during env composing
envComposerOpenBrowser: true,
// Enable auto-answering for prompts to skip manual confirmations.
// Make sure you have unknown values configured above.
skipPromptsUseAutoBehavior: false,
// Prompt behavior for deployment
// Options: prompt | autoYes | autoNo
deployBehavior: "prompt",
depsBehavior: "prompt",
gitBehavior: "prompt",
i18nBehavior: "prompt",
scriptsBehavior: "prompt",
// Behavior for existing GitHub repos during project creation
// Options: prompt | autoYes | autoYesSkipCommit | autoNo
existingRepoBehavior: "prompt",
});