Skip to content

Commit 3213bb8

Browse files
committed
updated screenshot and build script
1 parent b38973f commit 3213bb8

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,13 @@ timesheet.zip
2121
vendor
2222
node_modules
2323
tmp
24-
build/
24+
25+
# tenmporary build artifacts
26+
build/client/*.*
27+
build/client/dist/*
28+
build/data/*.*
29+
build/data/backups/*.*
30+
build/*.*
2531

2632
# backup files
2733
data/backups/*

build.bat

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ IF EXIST .\build\timesheet.yaml del .\build\timesheet.yaml
1010
IF EXIST .\build\MS_Windows_64bit.zip del .\build\MS_Windows_64bit.zip
1111
IF EXIST .\build\Linux_64bit.zip del .\build\Linux_64bit.zip
1212
IF EXIST .\build\Mac_OS_X_64bit.zip del .\build\Mac_OS_X_64bit.zip
13-
IF EXIST ".\build\client\dist\" @RD /S /Q ".\build\client\dist"
13+
IF EXIST .\build\client\dist\ @RD /S /Q .\build\client\dist
14+
del .\build\data\*.csv /F /Q
1415

1516
ECHO ======================
1617
ECHO Compiling frontend ...
@@ -22,6 +23,11 @@ cd ..
2223
ECHO =====================
2324
ECHO Compiling backend ...
2425
copy .\timesheet.yaml .\build\timesheet.yaml
26+
copy .\data\consultants_demo.csv .\build\data\consultants_demo.csv
27+
copy .\data\holidays_us_2019.csv .\build\data\holidays_us_2019.csv
28+
copy .\data\projects_demo.csv .\build\data\projects_demo.csv
29+
copy .\data\rates_demo.csv .\build\data\rates_demo.csv
30+
copy .\data\reportedRecords_demo.csv .\build\data\reportedRecords_demo.csv
2531
ECHO MS Windows ...
2632
set GOOS=windows
2733
set GOARCH=amd64

data/reportedRecords_demo.csv

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
created_at,date,hours,project,description,rate,consultant
22
"2016-06-22 19:10:25","2019-01-01",8,"_Public Holiday","","Public holiday","John Lasseter"
33
"2016-06-22 19:10:25","2019-01-01",8,"_Public Holiday","","Public holiday","Stanislav Valasek"
4-
"2016-06-22 19:10:25","2019-01-02",8,"_Vacation","","Vacation","John Lasseter"
4+
"2016-06-22 19:10:25","2019-01-10",8,"_Vacation","","Vacation","John Lasseter"
55
"2016-06-22 19:10:25","2019-01-02",8,"_Training","Knowledge base study","Off-site","Stanislav Valasek"
66
"2016-06-22 19:10:25","2019-01-03",2,"_Sick","Teeth doctor","Sick","John Lasseter"
77
"2016-06-22 19:10:25","2019-01-07",8,"_Training","Knowledge base study","Off-site","Stanislav Valasek"
8+
"2016-06-22 19:10:25","2019-01-09",8,"Apple","Knowledge base study","Off-site","John Lasseter"
89
"2016-06-22 19:10:25","2019-01-08",2,"_Sick","Teeth doctor","Sick","John Lasseter"
910
"2016-06-22 19:10:25","2019-02-01",8,"_Training","Knowledge base study","Off-site","Stanislav Valasek"
1011
"2016-06-22 19:10:25","2019-02-01",2,"_Sick","Teeth doctor","Sick","John Lasseter"

screenshots/main_screen.png

-1.31 KB
Loading

0 commit comments

Comments
 (0)