gitextract_x1ccivd5/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── docker-compose.yml ├── flask/ │ ├── Dockerfile │ ├── config.py │ ├── manage.py │ ├── project/ │ │ ├── __init__.py │ │ ├── controllers/ │ │ │ ├── __init__.py │ │ │ └── routes.py │ │ ├── models/ │ │ │ ├── __init__.py │ │ │ └── names.py │ │ ├── static/ │ │ │ ├── css/ │ │ │ │ └── style.css │ │ │ └── js/ │ │ │ └── script.js │ │ └── templates/ │ │ └── index.html │ ├── requirements.txt │ └── tests/ │ ├── __init__.py │ ├── test_configs.py │ └── test_website.py ├── nginx/ │ ├── Dockerfile │ ├── app.conf │ └── nginx.conf └── postgres/ ├── Dockerfile └── create.sql