This is the React frontend project of a cloud-native time tracking tool developed in the class Cloud Application Development at the University of Applied Sciences HTWG Konstanz. The time tracker app is able to track the working hours of each employee in an organization, is highly scalable and can easily be run in the cloud using providers such as AWS.
-
Make sure your NodeJS and npm versions are up-to-date for
React 17
-
Install dependencies:
npm install
oryarn
-
Start the server:
npm run dev
oryarn dev
-
Views are on:
localhost:3000
-
Linux:
NEXT_PUBLIC_TENANT=time-tracker-free npm run dev
-
Windows CMD:
set "NEXT_PUBLIC_TENANT=time-tracker-free" && npm run dev
-
Powershell:
($env:NEXT_PUBLIC_TENANT = "time-tracker-free") -and (npm run dev)