gitextract_nx7a1d76/ ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Pipfile ├── Procfile ├── Procfile.windows ├── README.md ├── app.json ├── client/ │ ├── getFromFirebase.js │ └── styles.css ├── docker-compose.yml ├── functions/ │ ├── .gitignore │ ├── package.json │ ├── src/ │ │ └── index.ts │ ├── tsconfig.json │ └── tslint.json ├── fundamentus.py ├── gettingstarted/ │ ├── __init__.py │ ├── settings.py │ ├── static/ │ │ └── humans.txt │ ├── urls.py │ └── wsgi.py ├── hello/ │ ├── __init__.py │ ├── admin.py │ ├── migrations/ │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates/ │ │ ├── base.html │ │ ├── db.html │ │ └── index.html │ ├── tests.py │ └── views.py ├── index.html ├── manage.py ├── requirements.txt ├── services.sh └── waitingbar.py