├── legal-ai-server
├── env
│ ├── lib64
│ ├── pip-selfcheck.json
│ ├── pyvenv.cfg
│ └── share
│ │ └── python-wheels
│ │ ├── pip-8.1.1-py2.py3-none-any.whl
│ │ ├── progress-1.2-py2.py3-none-any.whl
│ │ ├── six-1.10.0-py2.py3-none-any.whl
│ │ ├── wheel-0.29.0-py2.py3-none-any.whl
│ │ ├── chardet-2.3.0-py2.py3-none-any.whl
│ │ ├── colorama-0.3.7-py2.py3-none-any.whl
│ │ ├── distlib-0.2.2-py2.py3-none-any.whl
│ │ ├── html5lib-0.999-py2.py3-none-any.whl
│ │ ├── packaging-16.6-py2.py3-none-any.whl
│ │ ├── requests-2.9.1-py2.py3-none-any.whl
│ │ ├── retrying-1.3.3-py2.py3-none-any.whl
│ │ ├── urllib3-1.13.1-py2.py3-none-any.whl
│ │ ├── ipaddress-0.0.0-py2.py3-none-any.whl
│ │ ├── lockfile-0.12.2-py2.py3-none-any.whl
│ │ ├── pyparsing-2.0.3-py2.py3-none-any.whl
│ │ ├── setuptools-20.7.0-py2.py3-none-any.whl
│ │ ├── CacheControl-0.11.5-py2.py3-none-any.whl
│ │ └── pkg_resources-0.0.0-py2.py3-none-any.whl
├── .gitignore
├── README.md
├── application.wsgi
├── requirements.txt
└── server.py
├── webApp
├── src
│ ├── app
│ │ ├── app.component.scss
│ │ ├── layout
│ │ │ ├── layout.component.scss
│ │ │ ├── layout.component.html
│ │ │ ├── components
│ │ │ │ └── topnav
│ │ │ │ │ ├── topnav.component.html
│ │ │ │ │ ├── topnav.component.ts
│ │ │ │ │ ├── topnav.component.spec.ts
│ │ │ │ │ └── topnav.component.scss
│ │ │ ├── layout.component.ts
│ │ │ ├── layout.module.spec.ts
│ │ │ ├── dashboard
│ │ │ │ ├── dashboard.module.spec.ts
│ │ │ │ ├── dashboard.service.spec.ts
│ │ │ │ ├── dashboard-routing.module.ts
│ │ │ │ ├── dashboard.component.spec.ts
│ │ │ │ ├── dashboard.module.ts
│ │ │ │ ├── dashboard.component.scss
│ │ │ │ ├── dashboard.service.ts
│ │ │ │ ├── dashboard.component.html
│ │ │ │ └── dashboard.component.ts
│ │ │ ├── layout-routing.module.ts
│ │ │ ├── layout.component.spec.ts
│ │ │ └── layout.module.ts
│ │ ├── shared
│ │ │ ├── guard
│ │ │ │ ├── index.ts
│ │ │ │ ├── auth.guard.ts
│ │ │ │ └── auth.guard.spec.ts
│ │ │ ├── pipes
│ │ │ │ └── pipes.module.ts
│ │ │ └── services
│ │ │ │ ├── rest.service.spec.ts
│ │ │ │ └── rest.service.ts
│ │ ├── app.component.html
│ │ ├── app.component.ts
│ │ ├── login
│ │ │ ├── login.module.spec.ts
│ │ │ ├── login-routing.module.ts
│ │ │ ├── login.component.ts
│ │ │ ├── login.module.ts
│ │ │ ├── login.component.spec.ts
│ │ │ ├── login.component.scss
│ │ │ └── login.component.html
│ │ ├── app-routing.module.ts
│ │ ├── app.module.ts
│ │ └── app.component.spec.ts
│ ├── favicon.ico
│ ├── environments
│ │ ├── environment.prod.ts
│ │ └── environment.ts
│ ├── styles
│ │ ├── styles.scss
│ │ ├── _responsive.scss
│ │ ├── _main.scss
│ │ ├── _material.scss
│ │ └── _utils.scss
│ ├── assets
│ │ ├── images
│ │ │ ├── card-1.jpg
│ │ │ ├── card-2.jpg
│ │ │ └── card-3.jpg
│ │ ├── fonts
│ │ │ └── FontinSans
│ │ │ │ ├── Fontin_Sans_B.otf
│ │ │ │ ├── Fontin_Sans_BI.otf
│ │ │ │ ├── Fontin_Sans_I.otf
│ │ │ │ ├── Fontin_Sans_R.otf
│ │ │ │ └── Fontin_Sans_SC.otf
│ │ └── i18n
│ │ │ └── en.json
│ ├── tslint.json
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ ├── browserslist
│ ├── main.ts
│ ├── index.html
│ ├── test.ts
│ ├── karma.conf.js
│ └── polyfills.ts
├── e2e
│ ├── src
│ │ ├── app.po.ts
│ │ └── app.e2e-spec.ts
│ ├── tsconfig.e2e.json
│ └── protractor.conf.js
├── .editorconfig
├── tsconfig.json
├── LICENSE
├── .gitignore
├── README.md
├── package.json
├── tslint.json
└── angular.json
├── .DS_Store
├── README.md
├── elastic_upload.py
├── LICENSE
├── requirements.txt
└── law_eda.py
/legal-ai-server/env/lib64:
--------------------------------------------------------------------------------
1 | lib
--------------------------------------------------------------------------------
/webApp/src/app/app.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/webApp/src/app/layout/layout.component.scss:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/webApp/src/app/shared/guard/index.ts:
--------------------------------------------------------------------------------
1 | export * from './auth.guard';
2 |
--------------------------------------------------------------------------------
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/.DS_Store
--------------------------------------------------------------------------------
/legal-ai-server/env/pip-selfcheck.json:
--------------------------------------------------------------------------------
1 | {"last_check":"2018-12-15T16:37:24Z","pypi_version":"18.1"}
--------------------------------------------------------------------------------
/webApp/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/favicon.ico
--------------------------------------------------------------------------------
/webApp/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/legal-ai-server/env/pyvenv.cfg:
--------------------------------------------------------------------------------
1 | home = /usr/bin
2 | include-system-site-packages = false
3 | version = 3.5.2
4 |
--------------------------------------------------------------------------------
/webApp/src/styles/styles.scss:
--------------------------------------------------------------------------------
1 | @import 'material';
2 | @import 'main';
3 | @import 'utils';
4 | @import 'responsive';
5 |
--------------------------------------------------------------------------------
/webApp/src/assets/images/card-1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/images/card-1.jpg
--------------------------------------------------------------------------------
/webApp/src/assets/images/card-2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/images/card-2.jpg
--------------------------------------------------------------------------------
/webApp/src/assets/images/card-3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/images/card-3.jpg
--------------------------------------------------------------------------------
/webApp/src/assets/fonts/FontinSans/Fontin_Sans_B.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/fonts/FontinSans/Fontin_Sans_B.otf
--------------------------------------------------------------------------------
/webApp/src/assets/fonts/FontinSans/Fontin_Sans_BI.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/fonts/FontinSans/Fontin_Sans_BI.otf
--------------------------------------------------------------------------------
/webApp/src/assets/fonts/FontinSans/Fontin_Sans_I.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/fonts/FontinSans/Fontin_Sans_I.otf
--------------------------------------------------------------------------------
/webApp/src/assets/fonts/FontinSans/Fontin_Sans_R.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/fonts/FontinSans/Fontin_Sans_R.otf
--------------------------------------------------------------------------------
/webApp/src/assets/fonts/FontinSans/Fontin_Sans_SC.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Aditya-shahh/Legal-AI/HEAD/webApp/src/assets/fonts/FontinSans/Fontin_Sans_SC.otf
--------------------------------------------------------------------------------
/legal-ai-server/.gitignore:
--------------------------------------------------------------------------------
1 | # Virtualenv
2 | .Python
3 | bin
4 | lib
5 | include
6 | *.py[cod]
7 | .vscode
8 |
9 | # Mac OS X custom attribute files
10 | .DS_Store
11 |
--------------------------------------------------------------------------------
/webApp/src/app/layout/layout.component.html:
--------------------------------------------------------------------------------
1 |
2 |
Loading...
11 |