I built an open-source alternative to ViciDial. Here's the stack, and the bugs that ate my nights.
A developer has created an open-source alternative to ViciDial, detailing the architecture and challenges faced during its development. The project, hosted on GitHub, utilizes a stack that includes Kamailio, FreeSWITCH, and Postgres for multi-tenancy. The developer shares insights into bugs encountered and fixes implemented, emphasizing the importance of database-enforced tenant isolation.
- ▪The open-source project is available on GitHub under the AGPL-3.0 license.
- ▪The architecture includes Kamailio for SIP routing and FreeSWITCH for media processing.
- ▪The developer faced several bugs, including issues with press-1 campaigns and audio playback, which were resolved through various fixes.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3942632) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } dev0miky Posted on May 20 I built an open-source alternative to ViciDial. Here's the stack, and the bugs that ate my nights. #showdev #go #devops #opensource I started building the thing I actually wanted to deploy. It's on GitHub now, AGPL-3.0. This is a write-up of the architecture and, more usefully, the bugs that cost me real sleep.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).