├── .github ├── release.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd ├── exwrap │ └── main.go └── wrapper │ └── main.go ├── examples └── django-app-exwrap.json ├── go.mod ├── go.sum ├── impl ├── cmd.go ├── config.go ├── constants.go ├── embed.go ├── generate.go ├── platform.go ├── scripts.go ├── shared.go ├── unzip.go └── utils.go ├── resources └── Info.plist ├── scripts └── build.sh └── test └── test.py /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/README.md -------------------------------------------------------------------------------- /cmd/exwrap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/cmd/exwrap/main.go -------------------------------------------------------------------------------- /cmd/wrapper/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/cmd/wrapper/main.go -------------------------------------------------------------------------------- /examples/django-app-exwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/examples/django-app-exwrap.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/go.sum -------------------------------------------------------------------------------- /impl/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/cmd.go -------------------------------------------------------------------------------- /impl/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/config.go -------------------------------------------------------------------------------- /impl/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/constants.go -------------------------------------------------------------------------------- /impl/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/embed.go -------------------------------------------------------------------------------- /impl/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/generate.go -------------------------------------------------------------------------------- /impl/platform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/platform.go -------------------------------------------------------------------------------- /impl/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/scripts.go -------------------------------------------------------------------------------- /impl/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/shared.go -------------------------------------------------------------------------------- /impl/unzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/unzip.go -------------------------------------------------------------------------------- /impl/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/impl/utils.go -------------------------------------------------------------------------------- /resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/resources/Info.plist -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcfriend99/exwrap/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- 1 | print('Test python script') --------------------------------------------------------------------------------