Loading documentation/tornado_backend_stage_01_overview.md +28 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,34 @@ Starting point is the GitHub Tronado blog demo [see](https://github.com/tornadow ## Web App Architecture ### File structure ```bash . ├── documentation ├── README.md └── tornado-backend ├── blog.py ├── docker-compose.yml ├── Dockerfile ├── README.md ├── requirements.txt ├── schema.sql ├── static │ └── blog.css └── templates ├── archive.html ├── base.html ├── compose.html ├── create_author.html ├── entry.html ├── feed.xml ├── home.html ├── login.html └── modules └── entry.html ``` ### Docker compose file ```yml Loading Loading
documentation/tornado_backend_stage_01_overview.md +28 −0 Original line number Diff line number Diff line Loading @@ -5,6 +5,34 @@ Starting point is the GitHub Tronado blog demo [see](https://github.com/tornadow ## Web App Architecture ### File structure ```bash . ├── documentation ├── README.md └── tornado-backend ├── blog.py ├── docker-compose.yml ├── Dockerfile ├── README.md ├── requirements.txt ├── schema.sql ├── static │ └── blog.css └── templates ├── archive.html ├── base.html ├── compose.html ├── create_author.html ├── entry.html ├── feed.xml ├── home.html ├── login.html └── modules └── entry.html ``` ### Docker compose file ```yml Loading