2020-07-17 09:05:58 +03:00
|
|
|
import path from "path";
|
2020-07-05 00:24:34 +03:00
|
|
|
|
2020-06-17 21:05:13 +03:00
|
|
|
export const POLLING_RATE = 5000;
|
2020-07-15 07:06:56 +03:00
|
|
|
export const POWERGATE_HOST = "http://pow.slate.textile.io:6002";
|
2020-06-17 21:05:13 +03:00
|
|
|
|
2020-07-17 09:05:58 +03:00
|
|
|
export const AVATAR_STORAGE_URL = path.join(
|
|
|
|
__dirname,
|
|
|
|
"../public/static/system/"
|
|
|
|
);
|
2020-07-15 07:06:56 +03:00
|
|
|
export const FILE_STORAGE_URL = path.join(__dirname, "../public/static/files/");
|
2020-06-17 21:05:13 +03:00
|
|
|
|
2020-07-15 07:06:56 +03:00
|
|
|
export const GITHUB_URL = "https://github.com/filecoin-project/filecoin-client";
|