forked from ethereumclassic/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
73 additions
and
9 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
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,46 @@ | ||
version: '3' | ||
services: | ||
app: | ||
build: . | ||
command: ./app.js | ||
restart: always | ||
environment: | ||
MONGO_URI: 'mongodb://db/explorerDB' | ||
ports: | ||
- '3000:3000' | ||
depends_on: | ||
- db | ||
sync: | ||
build: . | ||
command: ./tools/sync.js | ||
restart: always | ||
environment: | ||
MONGO_URI: 'mongodb://db/explorerDB' | ||
depends_on: | ||
- db | ||
stats: | ||
build: . | ||
command: ./tools/stats.js | ||
restart: always | ||
environment: | ||
MONGO_URI: 'mongodb://db/explorerDB' | ||
depends_on: | ||
- db | ||
price: | ||
build: . | ||
command: ./tools/price.js | ||
restart: always | ||
environment: | ||
MONGO_URI: 'mongodb://db/explorerDB' | ||
depends_on: | ||
- db | ||
richlist: | ||
build: . | ||
command: ./tools/richlist.js | ||
restart: "no" | ||
environment: | ||
MONGO_URI: 'mongodb://db/explorerDB' | ||
depends_on: | ||
- db | ||
db: | ||
image: mongo |
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 |
---|---|---|
|
@@ -6,8 +6,8 @@ | |
<h2>About</h2> | ||
<p> {{settings.about}} </p> | ||
<span ng-bind-html="settings.poweredbyCustom" ng-if="settings.poweredbyCustom">{{settings.poweredbyCustom}}</span> | ||
<span ng-if="!settings.poweredbyCustom && settings.poweredbyEtcImage"><a href="https://github.com/ethereumproject/explorer" target="_blank"><img height="51px" src="{{settings.poweredbyEtcImage}}"></a></span> | ||
<p ng-if="!settings.poweredbyCustom && !settings.poweredbyEtcImage && settings.poweredbyEtc"> Powered by <a href="https://github.com/ethereumproject/explorer" target="_blank">ETC Explorer</a> </p> | ||
<span ng-if="!settings.poweredbyCustom && settings.poweredbyEtcImage"><a href="https://github.com/ethereumclassic/explorer" target="_blank"><img height="51px" src="{{settings.poweredbyEtcImage}}"></a></span> | ||
<p ng-if="!settings.poweredbyCustom && !settings.poweredbyEtcImage && settings.poweredbyEtc"> Powered by <a href="https://github.com/ethereumclassic/explorer" target="_blank">ETC Explorer</a> </p> | ||
</div> | ||
<div class="col-md-3 col-sm-6 col-xs-12 footer-block"> | ||
<h2>Follow Us On</h2> | ||
|
@@ -32,7 +32,7 @@ <h2>Follow Us On</h2> | |
<div ng-show="settings.symbol == 'ETC'" class="col-md-6 col-sm-12 col-xs-12 footer-block"> | ||
<h2>Help, it's Broken!</h2> | ||
<address class="margin-bottom-40"> | ||
<br>Open an Issue: <a href="https://github.com/ethereumproject/explorer/issues">github</a> | ||
<br>Open an Issue: <a href="https://github.com/ethereumclassic/explorer/issues">github</a> | ||
<br> <a href="mailto:[email protected]">Email bug reports</a> | ||
<br> <a href="https://twitter.com/eiaine">Twit</a> | ||
</address> | ||
|
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