{"id":23176240,"url":"https://github.com/nexmo-community/contact-center-server-node","last_synced_at":"2025-08-18T10:32:22.928Z","repository":{"id":44144974,"uuid":"183652360","full_name":"nexmo-community/contact-center-server-node","owner":"nexmo-community","description":"Build Your Own Contact Center (Node.js server). This is one of the components required for Nexmo's \"Contact Center Use Case\". You can run it locally or deploy it to Heroku as described below.","archived":false,"fork":false,"pushed_at":"2024-04-08T18:17:35.000Z","size":468,"stargazers_count":3,"open_issues_count":35,"forks_count":7,"subscribers_count":12,"default_branch":"main","last_synced_at":"2024-05-02T01:00:40.365Z","etag":null,"topics":["client-sdk","contact-center","database","heroku","nexmo","nexmo-account","server"],"latest_commit_sha":null,"homepage":"https://developer.nexmo.com/client-sdk/in-app-voice/contact-center-overview","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nexmo-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-04-26T15:26:55.000Z","updated_at":"2023-03-16T21:27:19.000Z","dependencies_parsed_at":"2023-02-18T21:30:59.707Z","dependency_job_id":"fec2a69f-c198-47ec-8b6d-8e3ece2add81","html_url":"https://github.com/nexmo-community/contact-center-server-node","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexmo-community%2Fcontact-center-server-node","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexmo-community%2Fcontact-center-server-node/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexmo-community%2Fcontact-center-server-node/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nexmo-community%2Fcontact-center-server-node/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nexmo-community","download_url":"https://codeload.github.com/nexmo-community/contact-center-server-node/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230225637,"owners_count":18193015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client-sdk","contact-center","database","heroku","nexmo","nexmo-account","server"],"created_at":"2024-12-18T06:15:58.225Z","updated_at":"2024-12-18T06:15:58.906Z","avatar_url":"https://github.com/nexmo-community.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Nexmo](public/images/nexmo.png)\n\n# Build Your Own Contact Center (Node.js server)\n\nThis is one of the components required for Nexmo's [\"Contact Center Use Case\"](https://developer.nexmo.com/client-sdk/in-app-voice/contact-center-overview).\n\nTo get started, you can use this server as a basis for your application's backend. You can run it locally or deploy it to Heroku as described below.\n\n**Table of Contents**\n\n- [Getting Started](#getting-started)\n  - [Start Locally](#start-locally)\n    - [Nexmo Account](#nexmo-account)\n    - [Mongo Database](#mongo-database)\n    - [Environment File](#environment-file)\n    - [Start it!](#start-it)\n  - [Deploy with Heroku](#deploy-with-heroku)\n- [Code of Conduct](#code-of-conduct)\n- [Contributing](#contributing)\n- [License](#license)\n\n\n## Getting Started\n\n### Start Locally\n\n#### Nexmo Account\n\nTo be able to use this application you'll need to [Sign up for a Nexmo account][signup].\n\n#### Mongo Database\n\nSet up a database and make note of the service address. It usually starts with `mongodb://` on port `27017`. You'll need to add this to the environment file.\n\n#### Environment File\n\nCreate an environment file by copying the example file, `.example.env` to `.env`, and editing it with your own configuration. Omitting environment variables will cause the application to use default values. As Nexmo needs to be able to access the server to provide NCCOs, default values will prevent you from making calls.\n\n```\nAPP_URL=http://url-for-the-server.com\nPORT=4000\nMOBILE_API_KEY=a-random-url-key-here\nMONGO_URL=mongodb://localaddress:27017/database-name\n```\n\n#### Start it!\n\nBefore you start it for the first time, run this to install our dependencies.\n\n```js\nnpm install\n```\n\nOnce installed, you can now run it locally.\n\n```js\nnpm run dev\n```\n\n### Deploy with Heroku\n\nThis application is configured to deploy to Heroku. \n\n[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)\n\n## Code of Conduct\n\nIn the interest of fostering an open and welcoming environment, we strive to make participation in our project and our community a harassment-free experience for everyone. Please check out our [Code of Conduct][coc] in full.\n\n## Contributing \nWe :heart: contributions from everyone! Check out the [Contributing Guidelines][contributing] for more information.\n\n[![contributions welcome][contribadge]][issues]\n\n## License\n\nThis project is subject to the [MIT License][license]\n\n[logo]: nexmo.png \"Nexmo\"\n[contribadge]: https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat \"Contributions Welcome\"\n\n[signup]: https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL\u0026utm_medium=github\u0026utm_campaign=lukeocodes\n\n[coc]: CODE_OF_CONDUCT.md \"Code of Conduct\"\n[contributing]: CONTRIBUTING.md \"Contributing\"\n[license]: LICENSE \"MIT License\"\n\n[issues]: ./../../issues \"Issues\"\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexmo-community%2Fcontact-center-server-node","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnexmo-community%2Fcontact-center-server-node","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnexmo-community%2Fcontact-center-server-node/lists"}