Skip to content
Snippets Groups Projects
Commit b017aa4d authored by thomaswoehlke's avatar thomaswoehlke
Browse files

Work

parent 19156326
No related branches found
No related tags found
No related merge requests found
{
"name": "covid19static",
"version": "0.0.13",
"description": "Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.",
"main": "index.js",
"scripts": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/thomaswoehlke/covid19python/covid19/static"
},
"keywords": [
"virus",
"pandemic",
"covid19",
"data",
"statistic",
"who",
"rki",
"python",
"flask",
"sqlalchemy",
"postgresql"
],
"author": "thomaswoehlke",
"license": "GPL-3.0-or-later",
}
...@@ -6,11 +6,12 @@ ...@@ -6,11 +6,12 @@
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l"
crossorigin="anonymous"> crossorigin="anonymous">
<link href="/fontawesome_free/css/all.min.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<title>{{page_info.title}}</title> <title>{{page_info.title}}</title>
</head> </head>
<body> <body>
<div class="container-fluid"> <div class="container">
<header> <header>
<div class="tw_padding"> <div class="tw_padding">
...@@ -66,5 +67,6 @@ ...@@ -66,5 +67,6 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js" <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.min.js"
integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF"
crossorigin="anonymous"></script> crossorigin="anonymous"></script>
<script src="/fontawesome_free/js/all.min.js"></script>
</body> </body>
</html> </html>
\ No newline at end of file
{
"name": "covid19python",
"version": "0.0.13",
"description": "Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.",
"main": "index.js",
"dependencies": {},
"devDependencies": {},
"scripts": {
"test": "test",
"postinstall": "cd covid19/static && npm install && ../.."
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomaswoehlke/covid19python.git"
},
"keywords": [
"virus",
"pandemic",
"covid19",
"data",
"statistic",
"who",
"rki",
"python",
"flask",
"sqlalchemy",
"postgresql"
],
"author": "thomaswoehlke",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thomaswoehlke/covid19python/issues"
},
"homepage": "https://github.com/thomaswoehlke/covid19python#readme"
}
...@@ -7,6 +7,7 @@ SQLAlchemy==1.3.22 ...@@ -7,6 +7,7 @@ SQLAlchemy==1.3.22
psycopg2==2.8.6 psycopg2==2.8.6
wget==3.2 wget==3.2
celery[redis]==5.0.5 celery[redis]==5.0.5
fontawesome-free==5.15.2
# #
# Frontend # Frontend
# #
......
from setuptools import setup, find_packages from setuptools import setup, find_packages
INSTALLED_APPS = [
'fontawesome-free'
]
setup( setup(
name='covid19python', name='covid19python',
version='0.0.13', version='0.0.13',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment