├── .gitignore ├── Dockerfile ├── LICENSE ├── Postman.json ├── README.md ├── config.json ├── config.py ├── guide └── README.md ├── install_db.py ├── requirements.txt ├── restgoat.db ├── routes.py └── server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/LICENSE -------------------------------------------------------------------------------- /Postman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/Postman.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "db_name": "restgoat.db" 3 | } -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/config.py -------------------------------------------------------------------------------- /guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/guide/README.md -------------------------------------------------------------------------------- /install_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/install_db.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.1 2 | -------------------------------------------------------------------------------- /restgoat.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/restgoat.db -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/routes.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/optiv/rest-api-goat/HEAD/server.py --------------------------------------------------------------------------------