[Pharo] Personal fitness tracker web app.
Git repo path changes on the VPS!
src/MyFitnessTracker/MFTDefaultFooter.class.st
@@ -13,10 +13,9 @@
13
13
html text:
14
14
'Copyright 2023–' , Date today year asString , ' Marius PETER'.
15
15
html space.
16
Removed:
html badge beSecondary with: 'v'
17
Removed:
,
18
Removed:
((IceRepository repositoryNamed: 'my-fitness-tracker') headCommit
19
Removed:
id copyFrom: 1 to: 6) ]
16
Added:
html badge beSecondary with: (MFTUtils version
17
Added:
ifNil: [ 'DEVELOP' ]
18
Added:
ifNotNil: [ 'v' , MFTUtils version ]) ]
20
19
]
21
20
22
21
{ #category : 'rendering' }
src/MyFitnessTracker/MFTUtils.class.st
@@ -15,6 +15,7 @@
15
15
| stdout |
16
16
version := (IceRepository repositoryNamed: 'my-fitness-tracker')
17
17
headCommit id copyFrom: 1 to: 6.
18
Added:
18
19
stdout := NonInteractiveTranscript stdout.
19
20
stdout crShow: 'Creating MFT deployment image...'.
20
21
stdout crShow: 'Setting the image in server mode...'.