Skip to content
This repository was 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

Folders and files

NameName
Last commit message
Last commit date
Mar 11, 2021
Mar 9, 2021
Mar 3, 2021
Mar 12, 2021
Mar 8, 2021
Feb 24, 2021
Feb 24, 2021
Feb 26, 2021
Feb 8, 2021
Mar 3, 2021
Feb 24, 2021

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>"
	]
}