Timeter is a small utility app to keep track of your time. It has a minimalistic features set required and sleek design. It is an ideal tool for a workplace that does not provide you with an automated way of knowing at which time you arrived and left the office. Stop opening, closing your local text editor for persisting and calculating the timesheet and hours manually. Start using Timeter now.
- PHP 8.1 or higher
- Database (eg: MySQL, PostgreSQL, SQLite)
- Web Server (eg: Apache, Nginx, IIS or use Laragon)
- Composer
- Node.js
- You can create multiple projects
- You can set the hourly wage of the project
- You can add the time spent manually (start at datetime and end at datetime)
- You can use the timer to track the time spent on the project
- Display the times calculated in the project (today, week, month, all)
- Display the earned wages calculated in the project (today, week, month, all)
Clone the repository and switch to the repo folder.
git clone https://github.com/sadegh19b/timeter.git
cd timeter
Install the node and php dependencies and after that, you need to create the database to run the migrations and configure the .env
file.
npm install
npm run build
composer install
cp .env.example .env
php artisan key:generate
php artisan migrate --seed
php artisan serve
This project use laravel sail for run the project in docker. (more information)
Note: if created laravel sail image before in docker app, just run ./vendor/bin/sail up
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
Now, switch to the project directory and run the command below:
cp .env.example .env
Edit the .env
file and change DB_HOST=mysql
and then following the commands.
./vendor/bin/sail up -d
./vendor/bin/sail npm install
./vendor/bin/sail npm run build
./vendor/bin/sail artisan key:generate
./vendor/bin/sail artisan migrate --seed
The default language is English en
, and it currently supports English en
and Persian fa
. You can change it in the .env
file.
APP_LANG=fa
The default timezone is UTC
. You can change it in the .env
file.
APP_TIMEZONE=Asia/Tehran
Run the project tests by following the command below:
php artisan test
Run tests in docker:
./vendor/bin/sail artisan test
Timeter is open source software released under the MIT license. See LICENSE for more information.