Speech application work with two api Web Speech Api and Google Speech Api
Simple application allows to transform speech/voice to text.
Based on two speech engines (can be selected in application):
localhost
or https protocol
.
cd speech
npm install
After installing dependencies you should configure application.
At first open config/default.js
and fill:
module.exports = {
host: 'http://localhost'
port: 3000
mongo: {
url: 'mongodb://mongo/dev',
},
...
}
config/default.js googleSpeech->credentials
To create an OAuth client ID, you must first set a product name on the consent screen
click “Configure consent screen”host
+ callback uri
, like that https://plus-speech.now.sh/api/auth/google/callback
config/default.js
. Fill oAuth -> google
with clientId
secret
from step 10. callback
field. It must be like callback from step 8 but without host. Example api/auth/google/callback
host
+ /api/auth/facebook/callback
press enter and click “Save changes”. Note: You can use several callback on one application.https://plus-speech.now.sh
click “Save changes”. Note: You can use several sites. Each site separated by space. Example https://plus-speech.now.sh/ http://localhost:3000
config/default.js
. Fill oAuth -> facebook
with clientId: App ID
, secret: App Secret
, App ID, App Secret
from “Settings” page. callback
field. It must be like callback from step 8 but without host. Example api/auth/facebook/callback
Your app is in development and unavailable to the public
You can have different configuration for production and development mode.
For this you need to set field with another configuration in file config/prod.js
. You can paste only required fields.
(!) File structure config/prod.js
should be like config/default.js
When you start application with NODE_ENV=prod
application take configuration from config/prod.js
.
Important: check you have nodejs v6.11.* and mongoDB v3.4.*.
Before starting you need to generate/compress/collect all js files for front-end.
Run from project root folder.
Command to prepare client app for production: npm run production.prepare.front
from root directory.
Or you can use:
cd client
npm run build.production
Note: For building angular 2 used @angular/cli
.
Generated and compressed files are stored in folder client/dist
.
For start application run npm start
.
Application started with NODE_ENV=prod
.
Credentials are in config/prod.js
file
Important: check you have nodejs v6.11.* and mongoDB v3.4.*.
For start backend: npm run start.dev
For init project you need:
cd client
npm install
For the following runs use next commands:
cd client
npm run start.client
Note: Only for development. Client app connected with backend through proxy.
By default client app starts on http://localhost:4200
and connects with backend by default localhost:3000
.
Angular cli proxy configuration: client/proxy.conf.json
Or you can use for Docker-compose for development.
not necessary, just for dev mode
Important: check you have docker and docker-compose
Use Make
file for shortcuts. All commands make help
For start backend run docker-compose up
or make app
.
If you need stop docker-compose containers use make stop
For init project you need:
cd client
npm install
For the following runs use next commands:
cd client
npm run start.client