mirror of https://gitlab.com/ecentrics/concordia
Browse Source
Fix/fix service integrations and urls See merge request ecentrics/concordia!19develop
Apostolos Fanakis
4 years ago
26 changed files with 97 additions and 73 deletions
@ -1,4 +1,4 @@ |
|||
# Variables needed in runtime (in browser) |
|||
REACT_APP_RENDEZVOUS_HOST=127.0.0.1 |
|||
REACT_APP_RENDEZVOUS_HOST=/ip4/127.0.0.1 |
|||
REACT_APP_RENDEZVOUS_PORT=9090 |
|||
USE_EXTERNAL_CONTRACTS_PROVIDER=true |
|||
|
@ -1,2 +1,3 @@ |
|||
UPLOAD_CONTRACTS_DIRECTORY=/mnt/concordia/contracts/ |
|||
LOGS_PATH=/mnt/concordia/logs/ |
|||
#CORS_ALLOWED_ORIGINS="http://127.0.0.1:7000;http://localhost:7000;http://127.0.0.1:4444;127.0.0.1:4444" |
|||
|
@ -1,4 +1,5 @@ |
|||
import path from 'path'; |
|||
|
|||
export const ORBIT_DIRECTORY_DEFAULT = path.join(__dirname, '..', 'orbitdb'); |
|||
export const IPFS_DIRECTORY_DEFAULT = path.join(__dirname, '..', 'ipfs'); |
|||
export const LOGS_PATH = path.join(__dirname, '..', 'logs'); |
|||
|
@ -1,5 +0,0 @@ |
|||
const { rendezvousHost, rendezvousPort } = require('../environment/interpolated/rendezvous'); |
|||
|
|||
const getRendezvousUrl = () => `http://${rendezvousHost}:${rendezvousPort}`; |
|||
|
|||
module.exports = getRendezvousUrl; |
Loading…
Reference in new issue