File tree Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Expand file tree Collapse file tree 3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 1
1
# hotel-manager
2
2
3
+ - [ Repository] ( https://github.com/DMG-TechLabs/hotel-manager )
4
+ - [ Tutorial Video] ( )
5
+
3
6
## References
4
7
5
8
- [ PlantUML] ( https://pdf.plantuml.net/1.2020.22/PlantUML_Language_Reference_Guide_en.pdf )
6
9
10
+ ## Authors
11
+
12
+ - [ Konstantinos Despoinidis 2021035] ( https://github.com/KDesp73 )
13
+ - [ Konstantinos Mokas 2021106] ( https://github.com/creatorkostas )
14
+ - [ Thanasis Georgalis 2021023] ( https://ThanasisGeorg )
15
+ - [ Konstantinos Giantselidis 2021026] ( https://github.com/congiants )
16
+
7
17
## License
8
18
9
19
[ Apache 2.0] ( ./LICENSE )
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ $Include = @(
16
16
" help" ,
17
17
" assets" ,
18
18
" docs/sequence-diagrams" ,
19
- " docs/uml"
19
+ " docs/uml" ,
20
+ " docs/code-metrics"
20
21
)
21
22
22
23
# Function to copy items to the distribution directory
Original file line number Diff line number Diff line change 3
3
4
4
DIST_DIR=" dist"
5
5
6
- mkdir -p $DIST_DIR
6
+ rm -rf $DIST_DIR && echo " [INFO] Removed $DIST_DIR / directory"
7
+ mkdir -p $DIST_DIR && echo " [INFO] Created $DIST_DIR /"
7
8
8
9
include=(
9
10
" src"
@@ -14,6 +15,7 @@ include=(
14
15
" assets"
15
16
" docs/sequence-diagrams"
16
17
" docs/uml"
18
+ " docs/code-metrics"
17
19
)
18
20
19
21
copy () {
@@ -24,6 +26,7 @@ copy() {
24
26
25
27
for inc in " ${include[@]} " ; do
26
28
copy " $inc "
29
+ echo " [INFO] Copied $inc "
27
30
done
28
31
29
32
You can’t perform that action at this time.
0 commit comments