├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── commands ├── build.go ├── init.go ├── new.go ├── podgen.go ├── push.go └── server.go ├── main.go ├── scripts ├── build.sh ├── dist.sh ├── test.sh ├── verify_no_uuid.sh ├── website_push.sh └── windows │ ├── build.bat │ └── verify_no_uuid.bat └── utils ├── error.go ├── file.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/README.md -------------------------------------------------------------------------------- /commands/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/build.go -------------------------------------------------------------------------------- /commands/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/init.go -------------------------------------------------------------------------------- /commands/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/new.go -------------------------------------------------------------------------------- /commands/podgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/podgen.go -------------------------------------------------------------------------------- /commands/push.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/push.go -------------------------------------------------------------------------------- /commands/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/commands/server.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/main.go -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/dist.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/verify_no_uuid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/verify_no_uuid.sh -------------------------------------------------------------------------------- /scripts/website_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/website_push.sh -------------------------------------------------------------------------------- /scripts/windows/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/windows/build.bat -------------------------------------------------------------------------------- /scripts/windows/verify_no_uuid.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/scripts/windows/verify_no_uuid.bat -------------------------------------------------------------------------------- /utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/utils/error.go -------------------------------------------------------------------------------- /utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/utils/file.go -------------------------------------------------------------------------------- /utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrchen/podgen/HEAD/utils/util.go --------------------------------------------------------------------------------