├── .env.example ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app.py ├── config_base.py ├── database.py ├── feeds ├── brasil.py ├── default.py └── tech.py ├── migrate.py ├── models.py ├── requirements.txt ├── run_briefing.py ├── static ├── css │ ├── font-awesome-all.min.css │ └── style.css ├── icons │ └── icon.svg └── webfonts │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.woff2 │ └── fa-v4compatibility.woff2 ├── templates ├── add_article.html ├── articles.html ├── head.html ├── header.html ├── index.html ├── view_article.html └── view_brief.html └── utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/app.py -------------------------------------------------------------------------------- /config_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/config_base.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/database.py -------------------------------------------------------------------------------- /feeds/brasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/feeds/brasil.py -------------------------------------------------------------------------------- /feeds/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/feeds/default.py -------------------------------------------------------------------------------- /feeds/tech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/feeds/tech.py -------------------------------------------------------------------------------- /migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/migrate.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_briefing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/run_briefing.py -------------------------------------------------------------------------------- /static/css/font-awesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/css/font-awesome-all.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/icons/icon.svg -------------------------------------------------------------------------------- /static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/webfonts/fa-v4compatibility.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/static/webfonts/fa-v4compatibility.woff2 -------------------------------------------------------------------------------- /templates/add_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/add_article.html -------------------------------------------------------------------------------- /templates/articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/articles.html -------------------------------------------------------------------------------- /templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/head.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/view_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/view_article.html -------------------------------------------------------------------------------- /templates/view_brief.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/templates/view_brief.html -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfzawacki/meridiano/HEAD/utils.py --------------------------------------------------------------------------------