├── .angular-cli.json ├── .editorconfig ├── .firebaserc ├── .gitignore ├── README.md ├── database.rules.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── index.js └── package.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── dashboard │ │ ├── dashboard.component.css │ │ ├── dashboard.component.html │ │ ├── dashboard.component.spec.ts │ │ └── dashboard.component.ts │ ├── loginpage │ │ ├── loginpage.component.css │ │ ├── loginpage.component.html │ │ ├── loginpage.component.spec.ts │ │ └── loginpage.component.ts │ ├── routes.ts │ └── services │ │ ├── auth.service.spec.ts │ │ ├── auth.service.ts │ │ ├── authguard.service.spec.ts │ │ ├── authguard.service.ts │ │ ├── xltofirestore.service.spec.ts │ │ └── xltofirestore.service.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── storage.rules ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/README.md -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/database.rules.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/functions/package.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/loginpage/loginpage.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/loginpage/loginpage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/loginpage/loginpage.component.html -------------------------------------------------------------------------------- /src/app/loginpage/loginpage.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/loginpage/loginpage.component.spec.ts -------------------------------------------------------------------------------- /src/app/loginpage/loginpage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/loginpage/loginpage.component.ts -------------------------------------------------------------------------------- /src/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/routes.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/services/authguard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/authguard.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/authguard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/authguard.service.ts -------------------------------------------------------------------------------- /src/app/services/xltofirestore.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/xltofirestore.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/xltofirestore.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/app/services/xltofirestore.service.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/storage.rules -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajayogan/excel2firestore/HEAD/tslint.json --------------------------------------------------------------------------------