├── .editorconfig ├── .fb-gitignore ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── angular.json ├── firebase.json ├── firestore-debug.log ├── package.json ├── src ├── app │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.config.ts ├── assets │ ├── .gitkeep │ └── firestore-palm-chatbot-logo.png ├── environments │ ├── environment.development.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts └── styles.css ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── ui-debug.log /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fb-gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.fb-gitignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/angular.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/firestore-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/firestore-palm-chatbot-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/assets/firestore-palm-chatbot-logo.png -------------------------------------------------------------------------------- /src/environments/environment.development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/environments/environment.development.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/src/styles.css -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/palm-chatbot-angular/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /ui-debug.log: -------------------------------------------------------------------------------- 1 | Web / API server started at 127.0.0.1:4000 2 | --------------------------------------------------------------------------------