-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
49 lines (27 loc) · 1019 Bytes
/
readme.txt
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
Timer
A desktop application that allows you to track time for multiple different
projects. The data is stored locally in a csv file. The location of the csv file
can be changed from the settings menu.
---
Project Setup
1. Clone the repository and navigate to the project directory
git clone https://github.com/paracosmos-studio/time-tracker.git
cd time-tracker
2. Create a virtual environment and activate it
python3 -m venv .venv
source .venv/bin/activate # For Linux and MacOS
.venv\Scripts\activate # For Windows
3. Install the required packages
pip3 install -r requirements.txt
4. Ignore changes to the `default` directory content
git update-index --assume-unchanged src/default/settings.json src/default/timesheet.csv
5. Run the application:
cd src
python3 main.py
---
Creating Executables
1. Install PyInstaller
pip3 install pyinstaller
2. Bundle the application
pyinstaller Timer.spec
It will create a `dist` directory with the executable files.