[PR #2] [MERGED] Initial version #74

Closed
opened 2026-02-27 04:59:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/guyzyl/whatsapp-contact-sync/pull/2
Author: @guyzyl
Created: 8/1/2022
Status: Merged
Merged: 8/7/2022
Merged by: @guyzyl

Base: mainHead: initial-dev


📝 Commits (10+)

  • 5570b0a Create initial server
  • 944be5c Update .gitignore
  • 4191a3b Initial WhatsApp logic
  • f8d0b7d Initial gContacts logic
  • 785ef71 Replaced Vuetify with Tailwind + DaisyUI
  • 0b68aac Implemented server-client communication
  • c7811f0 Typing fixes
  • 550c2ae Implemented initial Google authentication
  • 88b3775 Implemented initial sync
  • 6541832 Sync now fully functions!

📊 Changes

60 files changed (+7469 additions, -1006 deletions)

View changed files

.dockerignore (+4 -0)
📝 .gitignore (+5 -0)
.vite/deps_temp/package.json (+3 -0)
Dockerfile (+56 -0)
📝 README.md (+76 -2)
assets/entrypoint.sh (+14 -0)
assets/nginx.conf (+81 -0)
interfaces/api.ts (+21 -0)
server/Dockerfile (+36 -0)
server/main.ts (+83 -0)
server/package-lock.json (+4637 -0)
server/package.json (+41 -0)
server/routes/api.ts (+102 -0)
server/src/gapi.ts (+79 -0)
server/src/interfaces.ts (+5 -0)
server/src/sync.ts (+59 -0)
server/src/types.ts (+1 -0)
server/src/whatsapp.ts (+67 -0)
server/src/ws.ts (+17 -0)
server/tsconfig.json (+13 -0)

...and 40 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/guyzyl/whatsapp-contact-sync/pull/2 **Author:** [@guyzyl](https://github.com/guyzyl) **Created:** 8/1/2022 **Status:** ✅ Merged **Merged:** 8/7/2022 **Merged by:** [@guyzyl](https://github.com/guyzyl) **Base:** `main` ← **Head:** `initial-dev` --- ### 📝 Commits (10+) - [`5570b0a`](https://github.com/guyzyl/whatsapp-contact-sync/commit/5570b0a8211491ff3af4101334df9ea08494648c) Create initial server - [`944be5c`](https://github.com/guyzyl/whatsapp-contact-sync/commit/944be5c7ec34387f4b4303b77d8c7221249ab158) Update .gitignore - [`4191a3b`](https://github.com/guyzyl/whatsapp-contact-sync/commit/4191a3b040547a2bcc53d87bd5c731d0dca666ae) Initial WhatsApp logic - [`f8d0b7d`](https://github.com/guyzyl/whatsapp-contact-sync/commit/f8d0b7d4869b5e6d295f865785c65a856dd922a8) Initial gContacts logic - [`785ef71`](https://github.com/guyzyl/whatsapp-contact-sync/commit/785ef713b688a910f0c8c2bfe26f9e2238a3b63a) Replaced Vuetify with Tailwind + DaisyUI - [`0b68aac`](https://github.com/guyzyl/whatsapp-contact-sync/commit/0b68aac250552742e7ad19e0f16460b11061ec7b) Implemented server-client communication - [`c7811f0`](https://github.com/guyzyl/whatsapp-contact-sync/commit/c7811f0a36accebcf6bc8ab11500f2b06625eb7b) Typing fixes - [`550c2ae`](https://github.com/guyzyl/whatsapp-contact-sync/commit/550c2ae34645687875aa94756faa3907650c221d) Implemented initial Google authentication - [`88b3775`](https://github.com/guyzyl/whatsapp-contact-sync/commit/88b37751f2723d88a896a74d5b662fa9764043fe) Implemented initial sync - [`6541832`](https://github.com/guyzyl/whatsapp-contact-sync/commit/6541832e5ac1de63eb09561b454fa79d83c383f3) Sync now fully functions! ### 📊 Changes **60 files changed** (+7469 additions, -1006 deletions) <details> <summary>View changed files</summary> ➕ `.dockerignore` (+4 -0) 📝 `.gitignore` (+5 -0) ➕ `.vite/deps_temp/package.json` (+3 -0) ➕ `Dockerfile` (+56 -0) 📝 `README.md` (+76 -2) ➕ `assets/entrypoint.sh` (+14 -0) ➕ `assets/nginx.conf` (+81 -0) ➕ `interfaces/api.ts` (+21 -0) ➕ `server/Dockerfile` (+36 -0) ➕ `server/main.ts` (+83 -0) ➕ `server/package-lock.json` (+4637 -0) ➕ `server/package.json` (+41 -0) ➕ `server/routes/api.ts` (+102 -0) ➕ `server/src/gapi.ts` (+79 -0) ➕ `server/src/interfaces.ts` (+5 -0) ➕ `server/src/sync.ts` (+59 -0) ➕ `server/src/types.ts` (+1 -0) ➕ `server/src/whatsapp.ts` (+67 -0) ➕ `server/src/ws.ts` (+17 -0) ➕ `server/tsconfig.json` (+13 -0) _...and 40 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 04:59:05 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/whatsapp-contact-sync#74
No description provided.