pycms/README.md

22 lines
279 B
Markdown
Raw Normal View History

Здесь будет CMS на питоне с MongoDB.
2021-09-07 04:54:24 +03:00
DB: pythoncms
Table: posts
Format:
```
2021-09-07 04:54:24 +03:00
{
"_id": "0123456789",
"name": "Title",
"text": "Hello, this is post"
}
```
Index page:
```
{
"_id": "0123456789",
"name": "/",
"text": "Hello, this is index page"
}
```