Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Commit

Permalink
chore: cleanup and admin
Browse files Browse the repository at this point in the history
Signed-off-by: Carson Farmer <carson.farmer@gmail.com>
  • Loading branch information
carsonfarmer committed Oct 22, 2020
1 parent 5fe9a2c commit 3e7cac8
Show file tree
Hide file tree
Showing 9 changed files with 1,846 additions and 3,381 deletions.
21 changes: 0 additions & 21 deletions .eslintrc.js

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,6 @@ dist

# End of https://www.toptal.com/developers/gitignore/api/code,node

docs/
docs/

repo/
9 changes: 6 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"mochaExplorer.files": "**/*.spec.ts",
"mochaExplorer.files": "src/**/*.spec.ts",
"mochaExplorer.esmLoader": true,
"mochaExplorer.exit": true,
"mochaExplorer.require": ["ts-node/register", "source-map-support/register"],
"mochaExplorer.require": [
"ts-node/register",
"source-map-support/register"
],
"mochaExplorer.launcherScript": "node_modules/mocha-explorer-launcher-scripts/nyc",
"mochaExplorer.env": {
"TS_NODE_FILES": "true",
"TS_NODE_COMPILER_OPTIONS": "{\"module\": \"commonjs\" }"
}
}
}
30 changes: 30 additions & 0 deletions docker-compose-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
version: "3"
services:
threads1:
image: textile/go-threads:latest
restart: always
volumes:
- "./repo/threads1:/data/threads"
environment:
- THRDS_HOSTADDR=/ip4/0.0.0.0/tcp/4006
- THRDS_APIADDR=/ip4/0.0.0.0/tcp/6006
- THRDS_APIPROXYADDR=/ip4/0.0.0.0/tcp/6007
- THRDS_DEBUG=true
ports:
- "4006:4006"
- "127.0.0.1:6006:6006"
- "127.0.0.1:6007:6007"
threads2:
image: textile/go-threads:latest
restart: always
volumes:
- "./repo/threads2:/data/threads"
environment:
- THRDS_HOSTADDR=/ip4/0.0.0.0/tcp/4006
- THRDS_APIADDR=/ip4/0.0.0.0/tcp/6006
- THRDS_APIPROXYADDR=/ip4/0.0.0.0/tcp/6007
- THRDS_DEBUG=true
ports:
- "4206:4006"
- "127.0.0.1:6206:6006"
- "127.0.0.1:6207:6007"
Loading

0 comments on commit 3e7cac8

Please sign in to comment.