-
-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathcontext7.json
More file actions
50 lines (50 loc) · 1.43 KB
/
context7.json
File metadata and controls
50 lines (50 loc) · 1.43 KB
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
{
"projectTitle": "Wheels.dev",
"description": "An open source CFML framework inspired by Ruby on Rails for rapid web application development",
"folders": [
"docs/api",
"docs/src",
"app/snippets",
"guides"
],
"excludeFolders": [
"cli",
"design_docs",
"docs/overrides",
"docs/public",
"examples",
"vendor",
"test-artifacts",
"tests",
"tools"
],
"excludeFiles": [
"CHANGELOG.md",
"LICENSE",
"CONTRIBUTING.md",
".gitignore"
],
"rules": [
"Wheels uses MVC architecture with conventions over configuration",
"Controllers should extend the base Controller component",
"Models represent database tables and handle data persistence",
"Views use .cfm templates with embedded CFML code",
"Use the built-in ORM for database operations when possible",
"Routing follows RESTful conventions by default",
"Database migrations are handled through the built-in migration system",
"Use the CLI for generating components and running migrations",
"Follow the community coding standards for CFML",
"Documentation should be kept up-to-date with code changes",
"Tests should be written for all new features and bug fixes"
],
"versions": [
{
"tag": "v3.1.0",
"description": "Latest version with modern directory structure and enhanced features"
},
{
"tag": "v2.5.0",
"description": "Stable release with traditional structure"
}
]
}