├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc.js ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── beta_model └── group1-shard1of6.bin ├── controllers ├── api.ts └── auth.ts ├── db └── index.ts ├── environment └── index.ts ├── favicon.ico ├── fonts └── harta.ttf ├── idempotent_model ├── image └── rainbow.jpg ├── index.ts ├── lib ├── igstalk.ts └── inspect.js ├── package.json ├── routes └── index.ts ├── speech.py ├── src ├── index.ts └── util.ts ├── start.sh ├── swagger.yaml ├── tsconfig.json ├── types └── index.ts └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | react-project -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('gts/.prettierrc.json') 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/README.md -------------------------------------------------------------------------------- /beta_model/group1-shard1of6.bin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /controllers/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/controllers/api.ts -------------------------------------------------------------------------------- /controllers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/controllers/auth.ts -------------------------------------------------------------------------------- /db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/db/index.ts -------------------------------------------------------------------------------- /environment/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/environment/index.ts -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/harta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/fonts/harta.ttf -------------------------------------------------------------------------------- /idempotent_model: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /image/rainbow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/image/rainbow.jpg -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/index.ts -------------------------------------------------------------------------------- /lib/igstalk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/lib/igstalk.ts -------------------------------------------------------------------------------- /lib/inspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/lib/inspect.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/package.json -------------------------------------------------------------------------------- /routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/routes/index.ts -------------------------------------------------------------------------------- /speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/speech.py -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/src/util.ts -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | cd dist 2 | node . -------------------------------------------------------------------------------- /swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/swagger.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/types/index.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NarendraYSF/FastifyTS/HEAD/yarn.lock --------------------------------------------------------------------------------