Polish
This commit is contained in:
parent
71274ae609
commit
63d55c9f93
|
|
@ -1,2 +1,4 @@
|
||||||
recursive-include panoramix/templates *
|
recursive-include panoramix/templates *
|
||||||
recursive-include panoramix/static *
|
recursive-include panoramix/static *
|
||||||
|
recursive-include panoramix/data *
|
||||||
|
recursive-include panoramix/migrations *
|
||||||
|
|
|
||||||
|
|
@ -6,10 +6,14 @@
|
||||||
.carousel img {
|
.carousel img {
|
||||||
max-height: 500px;
|
max-height: 500px;
|
||||||
}
|
}
|
||||||
.carousel-caption{
|
.carousel {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
div.carousel-caption{
|
||||||
background: rgba(0,0,0,0.5);
|
background: rgba(0,0,0,0.5);
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
margin-bottom: 100px;
|
top: 150px;
|
||||||
|
bottom: auto !important;
|
||||||
}
|
}
|
||||||
.carousel-inner > .item > img {
|
.carousel-inner > .item > img {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
@ -37,6 +41,7 @@
|
||||||
<li data-target="#carousel" data-slide-to="1"></li>
|
<li data-target="#carousel" data-slide-to="1"></li>
|
||||||
<li data-target="#carousel" data-slide-to="2"></li>
|
<li data-target="#carousel" data-slide-to="2"></li>
|
||||||
<li data-target="#carousel" data-slide-to="3"></li>
|
<li data-target="#carousel" data-slide-to="3"></li>
|
||||||
|
<li data-target="#carousel" data-slide-to="4"></li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<!-- Wrapper for slides -->
|
<!-- Wrapper for slides -->
|
||||||
|
|
@ -77,6 +82,17 @@
|
||||||
<p>Join the community and take part in extending the widget library</p>
|
<p>Join the community and take part in extending the widget library</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="item">
|
||||||
|
<img style="max-height: none;" src="{{ url_for("static", filename="servers.jpg") }}">
|
||||||
|
<div class="carousel-caption">
|
||||||
|
<h1>Connect</h1>
|
||||||
|
<p>
|
||||||
|
Access data from MySql, Presto.db, Postgres, RedShift, Oracle, MsSql,
|
||||||
|
SQLite, and more through the SqlAlchemy integration. You can also
|
||||||
|
query realtime data blazingly fast out of Druid.io
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- Controls -->
|
<!-- Controls -->
|
||||||
<div>
|
<div>
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@ flask-appbuilder
|
||||||
gunicorn
|
gunicorn
|
||||||
markdown
|
markdown
|
||||||
mysql-python
|
mysql-python
|
||||||
|
nose
|
||||||
pandas
|
pandas
|
||||||
parsedatetime
|
parsedatetime
|
||||||
pydruid
|
pydruid
|
||||||
|
|
|
||||||
5
setup.py
5
setup.py
|
|
@ -9,7 +9,10 @@ setup(
|
||||||
"and druid.io"),
|
"and druid.io"),
|
||||||
version=version,
|
version=version,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
package_data={'': ['panoramix/migrations/alembic.ini']},
|
package_data={'': [
|
||||||
|
'panoramix/migrations/alembic.ini',
|
||||||
|
'panoramix/data/birth_names.csv.gz',
|
||||||
|
]},
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
scripts=['panoramix/bin/panoramix'],
|
scripts=['panoramix/bin/panoramix'],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue