This repository was archived by the owner on Jun 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ root = true
2
2
3
3
[* ]
4
4
indent_style = space
5
- indent_size = 2
5
+ indent_size = 4
6
6
end_of_line = lf
7
7
charset = utf-8
8
8
trim_trailing_whitespace = true
9
9
insert_final_newline = true
10
10
11
11
[{package.json,* .yml} ]
12
12
indent_style = space
13
- indent_size = 2
13
+ indent_size = 4
14
14
15
15
[* .md ]
16
16
trim_trailing_whitespace = false
Original file line number Diff line number Diff line change 34
34
@echo " check-env: compare keys in .env files with .env.example files"
35
35
@echo " logs: show logs for all containers"
36
36
@echo " clean: clean up workspace"
37
+ @echo
37
38
@echo " stop: stop all containers"
39
+ @echo " stop-web: stop only web"
40
+ @echo " stop-cms: stop only cms"
41
+ @echo " stop-db: stop only db"
38
42
39
43
# # GENERAL
40
44
@@ -66,17 +70,28 @@ clean:
66
70
stop :
67
71
$(DC ) stop
68
72
73
+ stop-web :
74
+ $(DC ) stop web
75
+
76
+ stop-cms :
77
+ $(DC ) stop cms
78
+
79
+ stop-db :
80
+ $(DC ) stop db
81
+
69
82
# # DOCKER DEVELOPMENT
70
83
dev : init dev-all
71
84
72
85
dev-all :
73
86
$(DC ) up -d
87
+ @echo ' NOTE: Make sure to import new config files to the database. Go to Settings > Config Sync > Interface in the Admin Panel and click on "Import".'
74
88
75
89
dev-web :
76
90
$(DC ) up -d web
77
91
78
92
dev-cms :
79
93
$(DC ) up -d cms
94
+ @echo ' NOTE: Make sure to import new config files to the database. Go to Settings > Config Sync > Interface in the Admin Panel and click on "Import".'
80
95
81
96
dev-database :
82
97
$(DC ) up -d db
@@ -88,5 +103,5 @@ build: init
88
103
build-web :
89
104
$(DC ) build web
90
105
91
- build-backend :
106
+ build-cms :
92
107
$(DC ) build cms
Original file line number Diff line number Diff line change 3
3
"version" : " 1.0.0" ,
4
4
"description" : " Next generation of Vim Landing Page" ,
5
5
"scripts" : {
6
- "dev" : " docker compose -f .development.docker-compose.yml up -d --build" ,
6
+ "dev" : " docker compose -f .development.docker-compose.yml up -d --build"
7
7
},
8
8
"author" : " " ,
9
9
"license" : " ISC"
You can’t perform that action at this time.
0 commit comments