Commit c68ec6ea authored by Markus Mößler's avatar Markus Mößler
Browse files

added file structure to tornado bakend stage 1 doc

parent c764628b
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -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