An open API service indexing awesome lists of open source software.

https://github.com/ryanwi/call-fabric-nextjs-example

An example application using the SignalWire Call Fabric APIs and SDK
https://github.com/ryanwi/call-fabric-nextjs-example

Last synced: 11 months ago
JSON representation

An example application using the SignalWire Call Fabric APIs and SDK

Awesome Lists containing this project

README

          

# Call Fabric Next.js Example

An example application using the SignalWire Call Fabric APIs and SDK powered by:

- [SignalWire Voice, Video, and Chat APIs]( https://developer.signalwire.com/)
- [Next.js](https://nextjs.org/)
- [Auth.js](https://authjs.dev/)
- [Tailwind CSS](https://tailwindcss.com/)
- [DaisyUI](https://daisyui.com/)

## Developing

Install dependecies:

```bash
npm install
```

start a development server:

```bash
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```bash
npm run build
```

## Contributing

1. Fork it ( https://github.com/ryanwi/call-fabric-nextjs-example/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Test it
4. Commit your changes (`git commit -am 'Add some feature'`)
5. Push to the branch (`git push origin my-new-feature`)
6. Create a new Pull Request

## Credits

- [Example showing how to use Auth.js with Next.js](https://next-auth-example.vercel.app/)