Skip to content

Latest commit

 

History

History
 
 

empty

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Empty template

This template is a blank canvas. Useful for speech-to-text applications, like text entry and note taking.

It's built on the standard Create React App template and comes with the following additional packages:

Note that you will need to have Node.js installed.

Get started

Create and deploy your application in the Speechly Dashboard

Copy the template using degit and install the dependencies

npx degit speechly/speechly/templates/empty my-app
cd my-app
npm install

Add your App ID to src/index.js, you can get it from the Speechly Dashboard

// index.js
<SpeechProvider appId="YOUR_APP_ID_FROM_SPEECHLY_DASHBOARD">

Start the development server

npm start

Navigate to localhost:3000 and you should see your app running. Open the Developer Console to see speech segement outputs.

Next steps

Head over to docs.speechly.com for more info and ideas about how to expand your voice application.

Deploying to the web

One of the best ways to improve your application is to share it and gather feedback from users. Deploying your application using e.g. Vercel is very easy.

Install vercel if you haven't already

npm install -g vercel

Then, from within your project folder

vercel deploy --name my-app

Once the deploy is finish, you'll get an URL that you can share!

Speechly CLI Tool

If you prefer the terminal, Speechly’s Command Line Tool will be your new best friend. Efficiently integrate Speechly to your development workflow while having access to any Speechly feature straight from your terminal.