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: 5 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T17:57:36.000Z (about 1 year ago)
- Last Synced: 2024-08-08T18:26:37.877Z (9 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

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.