-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from WHOIGit/dev
merge a1 into master
- Loading branch information
Showing
78 changed files
with
32,214 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,3 +116,6 @@ pyifcb | |
pg_data | ||
ifcb_data | ||
static | ||
|
||
.DS_Store | ||
.vscode |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it ifcbdb python manage.py collectstatic --no-input |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it ifcbdb python manage.py clearcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it ifcbdb python manage.py migrate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it ifcbdb python manage.py shell | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it postgres psql -U ifcb -W | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
docker exec -it ifcbdb bash | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,16 @@ | ||
name: ifcbdb | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python>=3.7 | ||
- django | ||
- psycopg2 | ||
- python=3.6 | ||
- django=2.1.7 | ||
- psycopg2=2.7.6.1 | ||
- pycrypto=2.6.1 | ||
- pip=19.0.3 | ||
- kombu=4.1.0 | ||
- celery=4.1.0 | ||
- gdal=2.4.0 | ||
- libiconv=1.15 | ||
- pip: | ||
- python-memcached==1.59 | ||
- redis==2.10.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,172 @@ | ||
footer .logo { | ||
height:50px; | ||
margin:0 5px; | ||
padding: 5px 10px; | ||
background: #fff; | ||
border-radius: 5px; | ||
border: solid 1px #007bff; | ||
html, | ||
body, | ||
.view { | ||
height: 100%; | ||
} | ||
|
||
body { | ||
padding-top: 45px | ||
} | ||
|
||
body.modal-open { | ||
overflow: hidden; | ||
} | ||
|
||
.navbar { | ||
min-height: 15px; | ||
transition: top 0.5s ease !important; | ||
} | ||
|
||
.navbar-hide { | ||
top: -56px; | ||
} | ||
|
||
.navbar-brand { | ||
padding: 0 5px; | ||
} | ||
|
||
.navbar.scrolling-navbar, | ||
.navbar.scrolling-navbar.top-nav-collapse { | ||
padding: 0; | ||
} | ||
|
||
.page-footer { | ||
background-color: #929FBA; | ||
} | ||
|
||
.footer-thumb { | ||
max-height: 60px; | ||
margin: 0 8px; | ||
} | ||
|
||
@keyframes waver { | ||
0% { | ||
border-radius: 2px; | ||
} | ||
100% { | ||
border-radius: 20px; | ||
} | ||
} | ||
|
||
.loading { | ||
text-align: center; | ||
font-size: 0.8em; | ||
background: #e9e9e9; | ||
position: relative; | ||
opacity: 0.5; | ||
height: 600px; | ||
} | ||
|
||
.loader, | ||
.loader::before, | ||
.loader::after { | ||
width: 40px; | ||
height: 40px; | ||
border-radius: 50%; | ||
border: solid 3px transparent; | ||
} | ||
|
||
.loader { | ||
border-bottom-color: #35008b; | ||
margin: auto; | ||
margin-bottom: 10px; | ||
text-align: center; | ||
animation: waver 1s infinite alternate ease-in-out; | ||
position: relative; | ||
} | ||
|
||
.loader::before, | ||
.loader::after { | ||
content: ''; | ||
display: block; | ||
position: absolute; | ||
} | ||
|
||
.loader::before { | ||
border-bottom-color: #35008b; | ||
left: -28px; | ||
top: -3px; | ||
animation: waver 1s infinite alternate ease-in-out; | ||
} | ||
|
||
.loader::after { | ||
border-bottom-color: #35008b; | ||
left: 23px; | ||
top: -3px; | ||
animation: waver 1s infinite alternate ease-in-out; | ||
} | ||
|
||
.ts-plot-container { | ||
height: 12vmax; | ||
min-height: 200px; | ||
} | ||
|
||
.card.h300 { | ||
height: 300px; | ||
} | ||
|
||
.card.h500 { | ||
height: 500px; | ||
} | ||
|
||
.modal .h300 { | ||
max-height: 300px; | ||
} | ||
|
||
.min-vh-50 { | ||
min-height: 50vh !important; | ||
} | ||
|
||
.min-vh-25 { | ||
min-height: 25vh !important; | ||
} | ||
|
||
.vh-50 { | ||
height: 50vh !important; | ||
} | ||
|
||
.vh-25 { | ||
height: 25vh !important; | ||
} | ||
|
||
.mt-10p { | ||
margin-top: 10% !important; | ||
} | ||
|
||
.mt-20p { | ||
margin-top: 20% !important; | ||
} | ||
|
||
table.table-sm td, | ||
table.table-sm th { | ||
padding-top: .4rem; | ||
padding-bottom: .4rem; | ||
} | ||
|
||
.spinner-center { | ||
position: absolute; | ||
top: 50%; | ||
} | ||
|
||
#mosaic { | ||
height: auto; | ||
} | ||
|
||
#mosaic-loading { | ||
cursor: wait; | ||
} | ||
|
||
#mosaic-loading .spinner-border { | ||
width: 3rem; | ||
height: 3rem; | ||
} | ||
|
||
#image-tab { | ||
overflow-x: auto | ||
} | ||
|
||
div.scale-bar { | ||
background: black; | ||
width: 34px; | ||
height: 5px; | ||
} |
Oops, something went wrong.