Skip to content
This repository has been archived by the owner on Apr 19, 2021. It is now read-only.
/ vortex Public archive

Experimental web interface for Storj/Tardigrade.

Notifications You must be signed in to change notification settings

storj-thirdparty/vortex

Repository files navigation

vortex

Experimental web interface for Storj/Tardigrade.

Build Status License GitHub contributors

usage

Production Usage

docker-compose up -d --force-recreate --build

Development Usage

docker-compose -f docker-compose-dev.yml up -d --force-recreate --build

Manually Run Audit

docker exec -it vortex_vortex_1 /usr/src/app/scripts/audit.sh

config

To run you need a server/config.json

{
	"baseUrl": "http://localhost:3000",
	"stargateEndpoint": "gateway.tardigradeshare.io",
	"stargateAuthEndpoint": "https://auth.tardigradeshare.io",
	"masterAccount": {
		"accessKey": "<your-master-access-key>",
		"secretKey": "<your-master-secret-key>",
		"projectId": "<your-tardigrade-project-id>",
		"apiKey": "<your-tardigrade-project-id>",
		"passphrase": "<your-tardigrade-passphrase>",
		"satelliteUrl": "<your-tardigrade-satellite>",
		"satelliteEndpoint": "<your-tardigrade-endpoint>",
		"username": "<your-tardigrade-email>",
		"password": "<your-tardigrade-password>"
	},
	"bucketPrefix": "<bucket-prefix>",
	"postmarkToken": "<postmarkapp.com-token>",
	"features": {
		"emailActivation": false
	},
	"adminTokens": [
		"<admin-token>"
	]
}