Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/havfo/sipcaller
React SIP user agent
https://github.com/havfo/sipcaller
material material-ui react redux sip sipjs
Last synced: 30 days ago
JSON representation
React SIP user agent
- Host: GitHub
- URL: https://github.com/havfo/sipcaller
- Owner: havfo
- Created: 2019-02-08T08:17:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T07:03:33.000Z (about 5 years ago)
- Last Synced: 2024-08-13T03:04:18.492Z (5 months ago)
- Topics: material, material-ui, react, redux, sip, sipjs
- Language: JavaScript
- Homepage: https://ringmeg.uninett.no
- Size: 237 KB
- Stars: 51
- Watchers: 7
- Forks: 41
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SipCaller
A SIP user agent implemented in React/Redux/Material-ui, using [sip.js](https://sipjs.com/).
Try it online at https://ringmeg.uninett.no.
## Build & run locally
Build app.
cd app/
Web `app` has own detailed README for development.
npm install
npm run build
Copy `build` folder content to ../server/public/
Now build server.
cd ../server
npm install
Generate certificate in `certs` folder
openssl req -x509 -newkey rsa:4096 -keyout localhost.key.pem -out localhost.cert.pem -days 365
(or check other options at https://letsencrypt.org/docs/certificates-for-localhost/
or https://stackoverflow.com/questions/9519707/can-nodejs-generate-ssl-certificates )
Configure: copy `config.example.js` into `config.js`,
adjust file name for certificate and key.
Run server. (You may need add `sudo` on Ubuntu 18.04, that has by default lower ports as privileged )
sudo node server