Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BryanMorgan/time-tracking-app
Reference React application for tracking time in tasks across multiple projects. Leverages the Golang API in https://github.com/BryanMorgan/time-tracking-api.
https://github.com/BryanMorgan/time-tracking-app
projects react reports tasks time time-tracking tracking
Last synced: 3 months ago
JSON representation
Reference React application for tracking time in tasks across multiple projects. Leverages the Golang API in https://github.com/BryanMorgan/time-tracking-api.
- Host: GitHub
- URL: https://github.com/BryanMorgan/time-tracking-app
- Owner: BryanMorgan
- License: mit
- Created: 2020-06-28T16:39:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T17:57:36.000Z (7 months ago)
- Last Synced: 2024-06-26T13:04:33.389Z (5 months ago)
- Topics: projects, react, reports, tasks, time, time-tracking, tracking
- Language: JavaScript
- Homepage:
- Size: 1.25 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - BryanMorgan/time-tracking-app - Reference React application for tracking time in tasks across multiple projects. Leverages the Golang API in https://github.com/BryanMorgan/time-tracking-api. (react)
README
# Time Tracking - React App
![CI](https://github.com/BryanMorgan/time-tracking-app/workflows/CI/badge.svg)
Reference app for tracking time, projects, and tasks. Built with React. Leverages the [Golang Time Tracking API](https://github.com/BryanMorgan/time-tracking-api).
# Starting
To start the app make sure dependencies are installed:
```
npm install
```and run
```
npm start
```
which will start the app on [localhost:3000](http://localhost:3000)### Notes
The app relies on the a `VITE_REACT_APP_API_URL` environment variable to connect to the Time Tracking API. The default of http://localhost:8000 is set in the `.env.development` configuration file.## Production Mode
To build production assets run:```
npm run build
```And then open `./dist/index.html` using a web server. For example:
```
cd dist
npx serve
```Ensure the `VITE_REACT_APP_API_URL` environment variable is set for the production API.