https://github.com/ryanwi/call-fabric-sveltekit-example
An example application using the SignalWire Call Fabric APIs and SDK
https://github.com/ryanwi/call-fabric-sveltekit-example
Last synced: 11 months ago
JSON representation
An example application using the SignalWire Call Fabric APIs and SDK
- Host: GitHub
- URL: https://github.com/ryanwi/call-fabric-sveltekit-example
- Owner: ryanwi
- Created: 2024-01-08T22:42:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-03T02:50:27.000Z (about 2 years ago)
- Last Synced: 2025-01-25T17:55:18.957Z (over 1 year ago)
- Language: Svelte
- Homepage: https://call-fabric-sveltekit-example.vercel.app
- Size: 447 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Call Fabric SvelteKit Example
An example application using the SignalWire Call Fabric APIs and SDK powered by:
- [SignalWire Voice, Video, and Chat APIs]( https://developer.signalwire.com/)
- [SvelteKit](https://kit.svelte.dev/)
- [SvelteKit Auth (Auth.js)](https://authjs.dev/reference/sveltekit)
- [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
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
## Contributing
1. Fork it ( https://github.com/ryanwi/call-fabric-sveltekit-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
- [Setting up AuthJS with Sveltekit 2.0](https://www.youtube.com/watch?v=ridRgYSJ0ds)
- [Example showing how to use Auth.js with SvelteKit](https://github.com/nextauthjs/sveltekit-auth-example)