https://github.com/khanjal/gig-logger
Mobile-first PWA for gig workers to track trips, shifts, and earnings. Built with Angular 20, AWS Amplify, and Google Sheets integration.
https://github.com/khanjal/gig-logger
angular aws-lambda gig-economy google-sheets-api pwa tailwindcss typescript
Last synced: 4 months ago
JSON representation
Mobile-first PWA for gig workers to track trips, shifts, and earnings. Built with Angular 20, AWS Amplify, and Google Sheets integration.
- Host: GitHub
- URL: https://github.com/khanjal/gig-logger
- Owner: khanjal
- License: mit
- Created: 2022-08-19T17:40:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-21T23:10:16.000Z (4 months ago)
- Last Synced: 2026-02-22T02:32:40.739Z (4 months ago)
- Topics: angular, aws-lambda, gig-economy, google-sheets-api, pwa, tailwindcss, typescript
- Language: TypeScript
- Homepage: https://gig.raptorsheets.com
- Size: 4.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Raptor Gig
## Status
[](https://github.com/khanjal/gig-logger/actions/workflows/frontend-tests.yml)
[](https://github.com/khanjal/gig-logger/actions/workflows/lambda-tests.yml)
[](https://codecov.io/gh/khanjal/gig-logger)
[](https://opensource.org/licenses/MIT)
## Architecture

## Overview
Raptor Gig is a tool designed to help gig workers log their work efficiently. It provides a user-friendly interface for tracking trips, shifts, and earnings, along with detailed statistics and insights.
## Features
- Log trips and shifts
- Track earnings, tips, and bonuses
- View detailed statistics and reports
- Manage services, regions, and places
- Responsive UI for desktop and mobile
## UI
### Setup
1. Install dependencies:
```bash
npm install
```
2. Ensure Angular CLI is installed globally:
```bash
npm install -g @angular/cli
```
### Run
1. Start the development server:
```bash
ng serve
```
2. Open your browser and navigate to:
```
http://localhost:4200
```
### Build
To create a production build:
```bash
ng build --prod
```
## Service
### Setup
1. Navigate to the Lambda project directory:
```bash
cd amplify/backend/function
```
2. Restore dependencies:
```bash
dotnet restore
```
### Update Lambda
1. Publish the Lambda project:
```bash
dotnet publish -c Release -o ./publish
```
2. Package the Lambda function:
```bash
cd publish
zip -r function.zip .
```
3. Deploy the updated Lambda function using the AWS CLI:
```bash
aws lambda update-function-code --function-name --zip-file fileb://function.zip
```
### Testing
Run unit tests for the Lambda project:
```bash
cd service
dotnet test
```
## Deployment
### Frontend
1. Build the Angular app for production:
```bash
ng build --prod
```
2. Deploy the `dist` folder to your hosting provider (e.g., AWS S3, Firebase Hosting).
### Backend
1. Publish the Lambda project:
```bash
dotnet publish -c Release -o ./publish
```
2. Package the Lambda function:
```bash
cd publish
zip -r function.zip .
```
3. Deploy the function using the AWS CLI as described above.
## Contributing
1. Fork the repository.
2. Create a new branch for your feature or bug fix:
```bash
git checkout -b feature-name
```
3. Commit your changes and push the branch:
```bash
git push origin feature-name
```
4. Open a pull request.
## License
This project is licensed under the MIT License. See the LICENSE file for details.