├── .github └── workflows │ ├── check_toncli.yml │ ├── full_build.yml │ └── test.yml ├── Dockerfile ├── README.md ├── hello ├── .gitignore ├── README.md ├── build │ ├── .gitkeep │ └── boc │ │ └── .gitkeep ├── fift │ ├── .gitkeep │ ├── data.fif │ ├── examples │ │ └── parse_get_cell.fif │ └── usage.fif ├── func │ └── code.func ├── project.yaml └── tests │ ├── .gitkeep │ └── tests.func ├── merge_asm.sh └── toncli.sh /.github/workflows/check_toncli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/.github/workflows/check_toncli.yml -------------------------------------------------------------------------------- /.github/workflows/full_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/.github/workflows/full_build.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/README.md -------------------------------------------------------------------------------- /hello/.gitignore: -------------------------------------------------------------------------------- 1 | *.pk 2 | build/*.fif 3 | -------------------------------------------------------------------------------- /hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/README.md -------------------------------------------------------------------------------- /hello/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/build/boc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/fift/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/fift/data.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/fift/data.fif -------------------------------------------------------------------------------- /hello/fift/examples/parse_get_cell.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/fift/examples/parse_get_cell.fif -------------------------------------------------------------------------------- /hello/fift/usage.fif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/fift/usage.fif -------------------------------------------------------------------------------- /hello/func/code.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/func/code.func -------------------------------------------------------------------------------- /hello/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/project.yaml -------------------------------------------------------------------------------- /hello/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hello/tests/tests.func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/hello/tests/tests.func -------------------------------------------------------------------------------- /merge_asm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinketer22/func_docker/HEAD/merge_asm.sh -------------------------------------------------------------------------------- /toncli.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | toncli "$@" 3 | --------------------------------------------------------------------------------