Skip to content

Commit

Permalink
change description
Browse files Browse the repository at this point in the history
  • Loading branch information
cichy380 committed Jan 21, 2024
1 parent 41bdefb commit d72a66f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 49 deletions.
56 changes: 8 additions & 48 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,57 +1,17 @@
# Speech to text

<a alt="Nx logo" href="https://nx.dev" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-logo.png" width="45"></a>
This simple [Angular](https://angular.io/) and [NestJS](https://nestjs.com/)-based application showcases the effective utilization of the [Google's Speech-to-Text service](https://cloud.google.com/speech-to-text). It takes what the user speaks into their device's microphone and transcribes it into written text, which is then displayed on the screen.

**This workspace has been generated by [Nx, a Smart, fast and extensible build system.](https://nx.dev)**
## Technology Stack

## Generate code
The application has been generated by [Nx](https://nx.dev), a fast and extensible dev tool and is built on [Angular](https://angular.io/) and [NestJS](https://nestjs.com/). [Angular](https://angular.io/) provides versatile choices for robust frontend development, whereas [NestJS](https://nestjs.com/) ensures a scalable and efficient build of the backend.

If you happen to use Nx plugins, you can leverage code generators that might come with it.
## Functionality

Run `nx list` to get a list of available plugins and whether they have generators. Then run `nx list <plugin-name>` to see what generators are available.
Upon initiating the application, the user is prompted with a simplistic interface where they can start speaking. The backend harnesses the power of [Google's Speech-to-Text service](https://cloud.google.com/speech-to-text) "under the hood" to transcribe this spoken language into written text. The transcribed text is then promptly displayed on the screen.

Learn more about [Nx generators on the docs](https://nx.dev/plugin-features/use-code-generators).
## Demo

## Running tasks
For a hands-on experience of our app, please follow to the [demo page](https://cichy380.github.io/speech-to-text/).

To execute tasks with Nx use the following syntax:

```
nx <target> <project> <...options>
```

You can also run multiple targets:

```
nx run-many -t <target1> <target2>
```

..or add `-p` to filter specific projects

```
nx run-many -t <target1> <target2> -p <proj1> <proj2>
```

Targets can be defined in the `package.json` or `projects.json`. Learn more [in the docs](https://nx.dev/core-features/run-tasks).

## Want better Editor Integration?

Have a look at the [Nx Console extensions](https://nx.dev/nx-console). It provides autocomplete support, a UI for exploring and running tasks & generators, and more! Available for VSCode, IntelliJ and comes with a LSP for Vim users.

## Ready to deploy?

Just run `nx build demoapp` to build the application. The build artifacts will be stored in the `dist/` directory, ready to be deployed.

## Set up CI!

Nx comes with local caching already built-in (check your `nx.json`). On CI you might want to go a step further.

- [Set up remote caching](https://nx.dev/core-features/share-your-cache)
- [Set up task distribution across multiple machines](https://nx.dev/nx-cloud/features/distribute-task-execution)
- [Learn more how to setup CI](https://nx.dev/recipes/ci)

## Connect with us!

- [Join the community](https://nx.dev/community)
- [Subscribe to the Nx Youtube Channel](https://www.youtube.com/@nxdevtools)
- [Follow us on Twitter](https://twitter.com/nxdevtools)
> Note: The backend for this app is deployed on [Render.com](https://render.com/) - free hosting service. Please keep in mind that the initial usage may take a little longer (even 2 minutes!) due to Render.com's [Spinning down on idle](https://docs.render.com/free#spinning-down-on-idle) feature, which temporarily turns down free web services after 15 minutes of inactivity. However, the app should respond much faster in subsequent uses.
2 changes: 1 addition & 1 deletion frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<title>frontend</title>
<title>Speech-to-Text</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
Expand Down

0 comments on commit d72a66f

Please sign in to comment.