Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ktmouk/minute
⏰ The open-source time tracking app for individuals.
https://github.com/ktmouk/minute
next-auth nextjs prisma productivity t3-stack tailwindcss time-tracking time-tracking-app timetracker timetracking trpc
Last synced: 2 months ago
JSON representation
⏰ The open-source time tracking app for individuals.
- Host: GitHub
- URL: https://github.com/ktmouk/minute
- Owner: ktmouk
- License: agpl-3.0
- Created: 2024-06-18T12:12:38.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-09-23T09:43:28.000Z (3 months ago)
- Last Synced: 2024-09-27T12:40:25.995Z (3 months ago)
- Topics: next-auth, nextjs, prisma, productivity, t3-stack, tailwindcss, time-tracking, time-tracking-app, timetracker, timetracking, trpc
- Language: TypeScript
- Homepage:
- Size: 1.56 MB
- Stars: 134
- Watchers: 1
- Forks: 12
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - ktmouk/minute - ⏰ The open-source time tracking app for individuals. (TypeScript)
README
minuteThe open-source time tracking app for individuals.
## About
Minute is an open-source time tracking app.
In contrast to other time tracking apps, Minute is mainly focused on individual use and is designed to help users review how they spend their time and use it more meaningfully.## Demo
Give Minute a try at the demo site! — no account registration required:
👉 [Visit Demo](https://minute-demo-ph.vercel.app/en/app)
> Please note that the demo site may be closed without notice.
## Screenshots
## Features
Folders
Manage your tracked time entries with folders and analyze your recent time usage per folder on the report page. You can also view and edit created folders and time entries anytime from the sidebar.
Categories
Group multiple folders into a single category and use them for analysis on the report page. For example, create categories for time you want to reduce and time you want to increase, and use them on the report page.
Custom Charts
Use the created folders and categories to display increases and decreases in time usage on a chart. The items displayed on the chart can be freely customized according to your needs. Reflect on whether your time usage aligns with your ideal.
## Built with
[Next.js](https://nextjs.org/)・[Tailwind CSS](https://tailwindcss.com/)・[tRPC](https://trpc.io/)・[Prisma](https://www.prisma.io/)・[NextAuth](https://next-auth.js.org/)・[next-intl](https://next-intl-docs.vercel.app/)・[Turborepo](https://turbo.build/)・[FactoryJS](https://github.com/factory-js/factory-js)
## Contributing
We always welcome to contributions!
If you want to add new features or fix something, feel free to open a PR or issue.- 🐛 Have a feature request or found any bugs? Let us know by creating a [New Issue](https://github.com/ktmouk/minute/issues/new).
- ✨ Looking for good issues to start contributing? Good issues are labeled with [contributors welcome](https://github.com/ktmouk/minute/issues?q=is%3Aissue+is%3Aopen+label%3A%22contributors+welcome%22).
- 💭 Have a question or something to ask? Let us know in [Discussions](https://github.com/ktmouk/minute/discussions/new/choose).## Try Minute locally
1. Clone this repository.
```sh
git clone https://github.com/ktmouk/minute.git
cd minute
```2. Copy `.env.example` to `.env`.
```sh
cp packages/prisma/.env.sample packages/prisma/.env
cp apps/web/.env.sample apps/web/.env.local
```3. Visit [GitHub Developer Settings](https://github.com/settings/developers) and create new OAuth app.
- Application name: You can set a name of your choice.
- Homepage URL: http://localhost:4000/
- Authorization callback URL: http://localhost:4000/api/auth/callback/github4. After creation, click the "Generate a new client secret" button and note the "Client ID" and "Client secret" values.
5. Set required envs in `apps/web/.env.local`: `NEXTAUTH_SECRET`, `GITHUB_ID` and `GITHUB_SECRET`.
```sh
vi apps/web/.env.localNEXTAUTH_SECRET= # You can create a secure value by executing `openssl rand -base64 32`.
GITHUB_ID= # paste the client ID here.
GITHUB_SECRET= # paste the client secret here.
```6. Install dependencies using pnpm:
```
pnpm install
```7. Start Docker containers to run the Postgres database:
```
docker-compose up
```8. Migrate the database and start the development server:
```
pnpm db:migrate:deploy && pnpm dev
```9. That’s all! 🎉 Try accessing http://localhost:4000/app.
## License
[AGPLv3](./LICENSE)