├── LICENSE ├── Procfile ├── README.md ├── manifest.yml ├── requirements.txt ├── server.py ├── setup.py └── templates ├── Contact Us.html ├── Home.html ├── Land.html ├── Login.html ├── Predict.html ├── Registration.html └── Team.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: python server.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/README.md -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- 1 | --- 2 | applications: 3 | - name: Aelous-Map 4 | memory: 250M 5 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/server.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/setup.py -------------------------------------------------------------------------------- /templates/Contact Us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Contact Us.html -------------------------------------------------------------------------------- /templates/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Home.html -------------------------------------------------------------------------------- /templates/Land.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Land.html -------------------------------------------------------------------------------- /templates/Login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Login.html -------------------------------------------------------------------------------- /templates/Predict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Predict.html -------------------------------------------------------------------------------- /templates/Registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Registration.html -------------------------------------------------------------------------------- /templates/Team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apurva-tech/Aelous/HEAD/templates/Team.html --------------------------------------------------------------------------------