Skip to content

Commit c64590d

Browse files
committed
feat(crowdsource): crowdsourcing platform
1 parent 39c511c commit c64590d

File tree

2,253 files changed

+166747
-21208
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,253 files changed

+166747
-21208
lines changed

.babelrc

-3
This file was deleted.

.circleci/config.yml

+821-158
Large diffs are not rendered by default.

.gitignore

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ yarn-debug.log*
66
yarn-error.log*
77
lerna-debug.log*
88
.idea
9-
.vscode
109
.out/
10+
.lh
1111
crowdsource-dataplatform.iml
1212
.DS_Store
1313
# Diagnostic reports (https://nodejs.org/api/report.html)
@@ -121,4 +121,9 @@ logs
121121
*/reports
122122

123123
# Gauge - JavaScript node dependencies
124-
*/node_modules
124+
*/node_modules
125+
.terraform
126+
127+
crowdsource-api/.env
128+
# ignore the upload files
129+
crowdsource-api/uploads

.husky/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx --no-install commitlint --edit "$1"

.husky/pre-commit

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx lint-staged
5+
npm test
6+
# npm start & npm run functional_test -- --env local
7+
# exit 1

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.17.5

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Ignore artifacts:
2+
build
3+
coverage

.prettierrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"endOfLine": "lf",
3+
"singleQuote": true,
4+
"tabWidth": 2,
5+
"bracketSpacing": true,
6+
"semi": true,
7+
"printWidth": 110,
8+
"arrowParens": "avoid",
9+
"htmlWhitespaceSensitivity": "strict"
10+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Project Vakyansh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Crowdsourcing Platform
2+
### It is a part of [Vakyansh's](https://open-speech-ekstep.github.io) recipes to build state of the art Speech Recogniition Model
3+
4+
5+
This will hold the crowdsourcing platform to be used to store voice data from various speakers
6+
7+
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
8+
[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors-)
9+
<!-- ALL-CONTRIBUTORS-BADGE:END -->
10+
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v1.4%20adopted-ff69b4.svg)](code-of-conduct.md)
11+
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
12+
13+
[![CircleCI](https://circleci.com/gh/Open-Speech-EkStep/crowdsource-dataplatform.svg?style=shield&circle-token=87fa694ba1f81c934edbd19f24509ba7302cd3b7)](https://app.circleci.com/pipelines/github/Open-Speech-EkStep/crowdsource-dataplatform)
14+
15+
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
16+
17+
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
18+
19+
[![Gitter](https://badges.gitter.im/Vakyansh/community.svg)](https://gitter.im/Vakyansh/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
20+
21+
If you like Vakyansh, ⭐ the project to support its development!_
22+
23+
## Documentation
24+
25+
Please follow the documentation for Crowdsourcing Platform [here](https://open-speech-ekstep.github.io/crowdsource_platform/)
26+
27+
You can improve it by sending pull requests to the
28+
[documentation repository](https://github.com/Open-Speech-EkStep/open-speech-ekstep.github.io).
29+
30+
## License
31+
[MIT License](LICENSE)

app.yaml

-30
This file was deleted.

app_yaml_dev.sh

-33
This file was deleted.

app_yaml_prod.sh

-33
This file was deleted.

app_yaml_test.sh

-33
This file was deleted.

0 commit comments

Comments
 (0)