https://timesheet-gpt.azurewebsites.net/
🎯 The goal is to make timesheets easier (especially for non-devs) by:
- 📊 Getting data from various sources (currently Microsoft Graph (sent emails, meetings, calls), soon GitHub, maybe Trello and DevOps)
- 🤖 Using Semantic Kernal to summarize all the data
- 📝 Using all the summaries to make a timesheet
Welcome, and thank you for contributing to TimesheetGPT! Before diving into the code, here’s how to get everything set up and running on your local machine.
Ensure you have the following installed:
- .NET 8 SDK
- Visual Studio 2022 or a similar IDE with support for .NET 8
- Git
Open a terminal or command prompt and run:
git clone https://github.com/SSWConsulting/TimesheetGPT.git
Navigate to the project folder:
cd TimesheetGPT/src/TimesheetGPT.WebUI
Run the application using the following command:
dotnet run
Now, you should be able to navigate to https://localhost:7270
(or another port if you have configured it differently) in your web browser to view the application.
- Branching Strategy: Ensure you create a new branch for the feature or fix you are working on. Do not push changes directly to the main branch.
As per https://www.ssw.com.au/rules/do-you-know-when-to-branch-in-git - Commit Messages: Write clear and concise commit messages describing the changes you are making and the reason.
As per https://www.ssw.com.au/rules/use-emojis-in-your-commits - Testing: Ensure to test your features or fixes before submitting a pull request.
- Pull Requests: Make sure your code is well-commented, follows the established coding style, and passes any tests before submitting a pull request.
As per https://www.ssw.com.au/rules/write-a-good-pull-request
Your contributions and insights are integral to the growth and functionality of TimesheetGPT. Feel free to submit issues, create pull requests, or document any bugs found. Let's make TimesheetGPT stellar together!