├── .gitignore ├── HISTORY.md ├── LICENSE.md ├── README.md ├── docker-compose.yaml.template ├── img ├── docker-arch.odg └── img1.png ├── indexer.Dockerfile.template ├── local_config.cfg.template ├── migration.Dockerfile ├── nginx.Dockerfile ├── nginx ├── api.conf └── nginx.conf ├── scripts ├── genKeys.sh └── postgresql.conf ├── start.sh ├── stop.sh ├── ton-compose.yaml ├── ton.Dockerfile.template └── ton_example.env /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/.gitignore -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/docker-compose.yaml.template -------------------------------------------------------------------------------- /img/docker-arch.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/img/docker-arch.odg -------------------------------------------------------------------------------- /img/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/img/img1.png -------------------------------------------------------------------------------- /indexer.Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/indexer.Dockerfile.template -------------------------------------------------------------------------------- /local_config.cfg.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/local_config.cfg.template -------------------------------------------------------------------------------- /migration.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/migration.Dockerfile -------------------------------------------------------------------------------- /nginx.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/nginx.Dockerfile -------------------------------------------------------------------------------- /nginx/api.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/nginx/api.conf -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /scripts/genKeys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/scripts/genKeys.sh -------------------------------------------------------------------------------- /scripts/postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/scripts/postgresql.conf -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/start.sh -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/stop.sh -------------------------------------------------------------------------------- /ton-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/ton-compose.yaml -------------------------------------------------------------------------------- /ton.Dockerfile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/ton.Dockerfile.template -------------------------------------------------------------------------------- /ton_example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blockchair/ton-deploy/HEAD/ton_example.env --------------------------------------------------------------------------------