├── .env.example ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ ├── maintenance-task.yml │ └── question.yml ├── README.md ├── RELEASE_PROCESS.md ├── SECURITY.md ├── browserconfig.xml ├── config.yml ├── dependabot.yml ├── humans.txt ├── logo.svg ├── manifest.json ├── pull_request_template.md ├── release-page.html ├── release.yml ├── robots.txt ├── schema.json ├── scripts │ ├── generate-release-page.sh │ ├── release.sh │ └── update-readme.sh ├── security.txt ├── sitemap.xml └── workflows │ ├── ci.yml │ ├── codeql.yml │ ├── markdown.yml │ ├── notifications.yml │ ├── pr-auto-label.yml │ ├── release.yml │ ├── setup-labels.yml │ └── validate-commits.yml ├── .gitignore ├── .golangci.yml ├── .husky ├── README.md ├── check-hooks.sh ├── ci-check-commits.sh └── hooks │ ├── commit-msg │ ├── install-hooks.sh │ ├── pre-commit │ └── prepare-commit-msg ├── .markdownlint.yml ├── .versionrc ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── Dockerfile ├── LICENSE ├── Makefile ├── assets ├── build-tool │ ├── .net.svg │ ├── babel.svg │ ├── composer.svg │ ├── conda.svg │ ├── go.svg │ ├── gradle.svg │ ├── maven.svg │ ├── nuget.svg │ ├── poetry.svg │ ├── rollup.svg │ ├── vite.svg │ └── webpack.svg ├── database │ ├── mongodb.svg │ ├── mysql.svg │ ├── oracle.svg │ ├── postgresql.svg │ ├── redis.svg │ └── sqlite.svg ├── frameworks │ ├── android.svg │ ├── angular.svg │ ├── apple.svg │ ├── cakephp.svg │ ├── codeigniter.svg │ ├── django.svg │ ├── dotnet.svg │ ├── echo.svg │ ├── electron.svg │ ├── express.svg │ ├── fastapi.svg │ ├── fastify.svg │ ├── fiber.svg │ ├── flask.svg │ ├── flutter.svg │ ├── gin.svg │ ├── laravel.svg │ ├── nestjs.svg │ ├── nextjs.svg │ ├── nuxt.svg │ ├── quarkus.svg │ ├── rails.svg │ ├── react.svg │ ├── rust.svg │ ├── spring-boot.svg │ ├── svelte.svg │ ├── symfony.svg │ ├── tauri.svg │ └── vue.svg ├── languages │ ├── cplusplus.svg │ ├── csharp.svg │ ├── go.svg │ ├── java.svg │ ├── javascript.svg │ ├── php.svg │ ├── python.svg │ ├── ruby.svg │ └── typescript.svg ├── logo.svg └── platforms │ ├── apple.svg │ ├── linux.svg │ └── windows.svg ├── cmd └── root.go ├── config └── tilokit.yaml ├── docs └── CI_OPTIMIZATION.md ├── go.mod ├── go.sum ├── internal ├── cli │ ├── generation │ │ ├── orchestrator.go │ │ ├── progress │ │ │ └── progress.go │ │ ├── prompts │ │ │ └── prompts.go │ │ ├── registry │ │ │ └── registry.go │ │ └── validator │ │ │ └── validator.go │ ├── handlers.go │ ├── manager.go │ ├── update.go │ └── validation.go ├── config │ └── config.go ├── core │ ├── context │ │ └── context.go │ ├── engine │ │ ├── engine.go │ │ └── engine_test.go │ └── registry │ │ └── registry.go ├── plugins │ ├── builders │ │ ├── expo.go │ │ ├── rollup.go │ │ ├── vite.go │ │ └── webpack.go │ ├── frameworks │ │ ├── angular.go │ │ ├── cakephp.go │ │ ├── codeigniter.go │ │ ├── csharp.go │ │ ├── desktop.go │ │ ├── django.go │ │ ├── express.go │ │ ├── fastapi.go │ │ ├── fastify.go │ │ ├── flask.go │ │ ├── flutter.go │ │ ├── golang.go │ │ ├── ionic.go │ │ ├── java.go │ │ ├── laravel.go │ │ ├── nest.go │ │ ├── nextjs.go │ │ ├── nuxtjs.go │ │ ├── react-native.go │ │ ├── react.go │ │ ├── ruby.go │ │ ├── rust.go │ │ ├── svelte.go │ │ ├── symfony.go │ │ └── vue.go │ ├── templates │ │ └── template.go │ └── tools │ │ └── git.go ├── templates │ ├── angular │ │ ├── common.go │ │ ├── module.go │ │ └── standalone.go │ ├── common │ │ ├── common.go │ │ └── javascript.go │ ├── csharp │ │ └── aspnet.go │ ├── flutter │ │ ├── assets │ │ │ └── flutter │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── .!58582!ic_launcher.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── .!58583!ic_launcher.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── .!58584!ic_launcher.png │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── .!58585!ic_launcher.png │ │ │ │ └── ic_launcher.png │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ ├── .!58586!ic_launcher.png │ │ │ │ └── ic_launcher.png │ │ └── flutter-cli.go │ ├── go │ │ ├── echo.go │ │ ├── fiber.go │ │ ├── gin.go │ │ └── gin │ │ │ ├── go.mod.tmpl │ │ │ └── main.go.tmpl │ ├── java │ │ └── spring.go │ ├── kotlin │ │ └── spring.go │ ├── nextjs │ │ ├── app.go │ │ └── pages.go │ ├── node │ │ ├── express.go │ │ ├── fastify.go │ │ └── nestjs.go │ ├── nuxtjs │ │ └── nuxtjs.go │ ├── php │ │ ├── cakephp.go │ │ ├── codeigniter.go │ │ ├── laravel.go │ │ └── symfony.go │ ├── python │ │ ├── django.go │ │ ├── fastapi.go │ │ └── flask.go │ ├── react-native │ │ ├── assets │ │ │ └── react-native │ │ │ │ └── expo │ │ │ │ ├── .!58588!SpaceMono-Regular.ttf │ │ │ │ ├── .!58589!adaptive-icon.png │ │ │ │ ├── .!58590!favicon.png │ │ │ │ ├── .!58591!icon.png │ │ │ │ ├── .!58592!partial-react-logo.png │ │ │ │ ├── .!58593!react-logo.png │ │ │ │ ├── .!58594!react-logo@2x.png │ │ │ │ ├── .!58595!react-logo@3x.png │ │ │ │ ├── .!58596!splash-icon.png │ │ │ │ ├── SpaceMono-Regular.ttf │ │ │ │ ├── adaptive-icon.png │ │ │ │ ├── favicon.png │ │ │ │ ├── icon.png │ │ │ │ ├── partial-react-logo.png │ │ │ │ ├── react-logo.png │ │ │ │ ├── react-logo@2x.png │ │ │ │ ├── react-logo@3x.png │ │ │ │ └── splash-icon.png │ │ └── expo-ts.go │ ├── react │ │ ├── vite-js.go │ │ └── vite-ts.go │ ├── ruby │ │ └── rails.go │ ├── svelte │ │ ├── assets.go │ │ ├── vite-js.go │ │ └── vite-ts.go │ └── vue │ │ ├── vite-common.go │ │ ├── vite-js.go │ │ └── vite-ts.go ├── ui │ └── progress.go └── utils │ ├── crypto.go │ ├── env.go │ ├── file.go │ ├── flutter.go │ └── helpers.go ├── main.go ├── pkg └── constants │ ├── constants.go │ └── files.go └── scripts ├── hotfix.sh ├── init-branches.sh ├── install.sh ├── status.sh ├── test-emoji-validation.sh ├── test-release.sh └── test.sh /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/maintenance-task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/ISSUE_TEMPLATE/maintenance-task.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/browserconfig.xml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/humans.txt -------------------------------------------------------------------------------- /.github/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/logo.svg -------------------------------------------------------------------------------- /.github/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/manifest.json -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/release-page.html -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/robots.txt -------------------------------------------------------------------------------- /.github/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/schema.json -------------------------------------------------------------------------------- /.github/scripts/generate-release-page.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/scripts/generate-release-page.sh -------------------------------------------------------------------------------- /.github/scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/scripts/release.sh -------------------------------------------------------------------------------- /.github/scripts/update-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/scripts/update-readme.sh -------------------------------------------------------------------------------- /.github/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/security.txt -------------------------------------------------------------------------------- /.github/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/sitemap.xml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/markdown.yml -------------------------------------------------------------------------------- /.github/workflows/notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/notifications.yml -------------------------------------------------------------------------------- /.github/workflows/pr-auto-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/pr-auto-label.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/setup-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/setup-labels.yml -------------------------------------------------------------------------------- /.github/workflows/validate-commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.github/workflows/validate-commits.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.husky/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/README.md -------------------------------------------------------------------------------- /.husky/check-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/check-hooks.sh -------------------------------------------------------------------------------- /.husky/ci-check-commits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/ci-check-commits.sh -------------------------------------------------------------------------------- /.husky/hooks/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/hooks/commit-msg -------------------------------------------------------------------------------- /.husky/hooks/install-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/hooks/install-hooks.sh -------------------------------------------------------------------------------- /.husky/hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/hooks/pre-commit -------------------------------------------------------------------------------- /.husky/hooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.husky/hooks/prepare-commit-msg -------------------------------------------------------------------------------- /.markdownlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.markdownlint.yml -------------------------------------------------------------------------------- /.versionrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.versionrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/Makefile -------------------------------------------------------------------------------- /assets/build-tool/.net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/.net.svg -------------------------------------------------------------------------------- /assets/build-tool/babel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/babel.svg -------------------------------------------------------------------------------- /assets/build-tool/composer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/composer.svg -------------------------------------------------------------------------------- /assets/build-tool/conda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/conda.svg -------------------------------------------------------------------------------- /assets/build-tool/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/go.svg -------------------------------------------------------------------------------- /assets/build-tool/gradle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/gradle.svg -------------------------------------------------------------------------------- /assets/build-tool/maven.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/maven.svg -------------------------------------------------------------------------------- /assets/build-tool/nuget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/nuget.svg -------------------------------------------------------------------------------- /assets/build-tool/poetry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/poetry.svg -------------------------------------------------------------------------------- /assets/build-tool/rollup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/rollup.svg -------------------------------------------------------------------------------- /assets/build-tool/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/vite.svg -------------------------------------------------------------------------------- /assets/build-tool/webpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/build-tool/webpack.svg -------------------------------------------------------------------------------- /assets/database/mongodb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/mongodb.svg -------------------------------------------------------------------------------- /assets/database/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/mysql.svg -------------------------------------------------------------------------------- /assets/database/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/oracle.svg -------------------------------------------------------------------------------- /assets/database/postgresql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/postgresql.svg -------------------------------------------------------------------------------- /assets/database/redis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/redis.svg -------------------------------------------------------------------------------- /assets/database/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/database/sqlite.svg -------------------------------------------------------------------------------- /assets/frameworks/android.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/android.svg -------------------------------------------------------------------------------- /assets/frameworks/angular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/angular.svg -------------------------------------------------------------------------------- /assets/frameworks/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/apple.svg -------------------------------------------------------------------------------- /assets/frameworks/cakephp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/cakephp.svg -------------------------------------------------------------------------------- /assets/frameworks/codeigniter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/codeigniter.svg -------------------------------------------------------------------------------- /assets/frameworks/django.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/django.svg -------------------------------------------------------------------------------- /assets/frameworks/dotnet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/dotnet.svg -------------------------------------------------------------------------------- /assets/frameworks/echo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/echo.svg -------------------------------------------------------------------------------- /assets/frameworks/electron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/electron.svg -------------------------------------------------------------------------------- /assets/frameworks/express.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/express.svg -------------------------------------------------------------------------------- /assets/frameworks/fastapi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/fastapi.svg -------------------------------------------------------------------------------- /assets/frameworks/fastify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/fastify.svg -------------------------------------------------------------------------------- /assets/frameworks/fiber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/fiber.svg -------------------------------------------------------------------------------- /assets/frameworks/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/flask.svg -------------------------------------------------------------------------------- /assets/frameworks/flutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/flutter.svg -------------------------------------------------------------------------------- /assets/frameworks/gin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/gin.svg -------------------------------------------------------------------------------- /assets/frameworks/laravel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/laravel.svg -------------------------------------------------------------------------------- /assets/frameworks/nestjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/nestjs.svg -------------------------------------------------------------------------------- /assets/frameworks/nextjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/nextjs.svg -------------------------------------------------------------------------------- /assets/frameworks/nuxt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/nuxt.svg -------------------------------------------------------------------------------- /assets/frameworks/quarkus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/quarkus.svg -------------------------------------------------------------------------------- /assets/frameworks/rails.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/rails.svg -------------------------------------------------------------------------------- /assets/frameworks/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/react.svg -------------------------------------------------------------------------------- /assets/frameworks/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/rust.svg -------------------------------------------------------------------------------- /assets/frameworks/spring-boot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/spring-boot.svg -------------------------------------------------------------------------------- /assets/frameworks/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/svelte.svg -------------------------------------------------------------------------------- /assets/frameworks/symfony.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/symfony.svg -------------------------------------------------------------------------------- /assets/frameworks/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/tauri.svg -------------------------------------------------------------------------------- /assets/frameworks/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/frameworks/vue.svg -------------------------------------------------------------------------------- /assets/languages/cplusplus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/cplusplus.svg -------------------------------------------------------------------------------- /assets/languages/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/csharp.svg -------------------------------------------------------------------------------- /assets/languages/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/go.svg -------------------------------------------------------------------------------- /assets/languages/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/java.svg -------------------------------------------------------------------------------- /assets/languages/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/javascript.svg -------------------------------------------------------------------------------- /assets/languages/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/php.svg -------------------------------------------------------------------------------- /assets/languages/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/python.svg -------------------------------------------------------------------------------- /assets/languages/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/ruby.svg -------------------------------------------------------------------------------- /assets/languages/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/languages/typescript.svg -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/logo.svg -------------------------------------------------------------------------------- /assets/platforms/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/platforms/apple.svg -------------------------------------------------------------------------------- /assets/platforms/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/platforms/linux.svg -------------------------------------------------------------------------------- /assets/platforms/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/assets/platforms/windows.svg -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/cmd/root.go -------------------------------------------------------------------------------- /config/tilokit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/config/tilokit.yaml -------------------------------------------------------------------------------- /docs/CI_OPTIMIZATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/docs/CI_OPTIMIZATION.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cli/generation/orchestrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/generation/orchestrator.go -------------------------------------------------------------------------------- /internal/cli/generation/progress/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/generation/progress/progress.go -------------------------------------------------------------------------------- /internal/cli/generation/prompts/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/generation/prompts/prompts.go -------------------------------------------------------------------------------- /internal/cli/generation/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/generation/registry/registry.go -------------------------------------------------------------------------------- /internal/cli/generation/validator/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/generation/validator/validator.go -------------------------------------------------------------------------------- /internal/cli/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/handlers.go -------------------------------------------------------------------------------- /internal/cli/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/manager.go -------------------------------------------------------------------------------- /internal/cli/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/update.go -------------------------------------------------------------------------------- /internal/cli/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/cli/validation.go -------------------------------------------------------------------------------- /internal/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/config/config.go -------------------------------------------------------------------------------- /internal/core/context/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/core/context/context.go -------------------------------------------------------------------------------- /internal/core/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/core/engine/engine.go -------------------------------------------------------------------------------- /internal/core/engine/engine_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/core/engine/engine_test.go -------------------------------------------------------------------------------- /internal/core/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/core/registry/registry.go -------------------------------------------------------------------------------- /internal/plugins/builders/expo.go: -------------------------------------------------------------------------------- 1 | package builders 2 | -------------------------------------------------------------------------------- /internal/plugins/builders/rollup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/builders/rollup.go -------------------------------------------------------------------------------- /internal/plugins/builders/vite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/builders/vite.go -------------------------------------------------------------------------------- /internal/plugins/builders/webpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/builders/webpack.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/angular.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/angular.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/cakephp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/cakephp.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/codeigniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/codeigniter.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/csharp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/csharp.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/desktop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/desktop.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/django.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/django.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/express.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/express.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/fastapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/fastapi.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/fastify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/fastify.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/flask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/flask.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/flutter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/flutter.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/golang.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/ionic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/ionic.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/java.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/java.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/laravel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/laravel.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/nest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/nest.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/nextjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/nextjs.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/nuxtjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/nuxtjs.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/react-native.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/react-native.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/react.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/react.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/ruby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/ruby.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/rust.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/rust.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/svelte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/svelte.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/symfony.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/symfony.go -------------------------------------------------------------------------------- /internal/plugins/frameworks/vue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/frameworks/vue.go -------------------------------------------------------------------------------- /internal/plugins/templates/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/templates/template.go -------------------------------------------------------------------------------- /internal/plugins/tools/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/plugins/tools/git.go -------------------------------------------------------------------------------- /internal/templates/angular/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/angular/common.go -------------------------------------------------------------------------------- /internal/templates/angular/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/angular/module.go -------------------------------------------------------------------------------- /internal/templates/angular/standalone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/angular/standalone.go -------------------------------------------------------------------------------- /internal/templates/common/common.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | const ( 4 | Env = `PORT=` 5 | ) 6 | -------------------------------------------------------------------------------- /internal/templates/common/javascript.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/common/javascript.go -------------------------------------------------------------------------------- /internal/templates/csharp/aspnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/csharp/aspnet.go -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-hdpi/.!58582!ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/assets/flutter/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-mdpi/.!58583!ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/assets/flutter/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xhdpi/.!58584!ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/assets/flutter/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xxhdpi/.!58585!ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/assets/flutter/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xxxhdpi/.!58586!ic_launcher.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/flutter/assets/flutter/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/assets/flutter/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /internal/templates/flutter/flutter-cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/flutter/flutter-cli.go -------------------------------------------------------------------------------- /internal/templates/go/echo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/go/echo.go -------------------------------------------------------------------------------- /internal/templates/go/fiber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/go/fiber.go -------------------------------------------------------------------------------- /internal/templates/go/gin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/go/gin.go -------------------------------------------------------------------------------- /internal/templates/go/gin/go.mod.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/go/gin/go.mod.tmpl -------------------------------------------------------------------------------- /internal/templates/go/gin/main.go.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/go/gin/main.go.tmpl -------------------------------------------------------------------------------- /internal/templates/java/spring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/java/spring.go -------------------------------------------------------------------------------- /internal/templates/kotlin/spring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/kotlin/spring.go -------------------------------------------------------------------------------- /internal/templates/nextjs/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/nextjs/app.go -------------------------------------------------------------------------------- /internal/templates/nextjs/pages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/nextjs/pages.go -------------------------------------------------------------------------------- /internal/templates/node/express.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/node/express.go -------------------------------------------------------------------------------- /internal/templates/node/fastify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/node/fastify.go -------------------------------------------------------------------------------- /internal/templates/node/nestjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/node/nestjs.go -------------------------------------------------------------------------------- /internal/templates/nuxtjs/nuxtjs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/nuxtjs/nuxtjs.go -------------------------------------------------------------------------------- /internal/templates/php/cakephp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/php/cakephp.go -------------------------------------------------------------------------------- /internal/templates/php/codeigniter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/php/codeigniter.go -------------------------------------------------------------------------------- /internal/templates/php/laravel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/php/laravel.go -------------------------------------------------------------------------------- /internal/templates/php/symfony.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/php/symfony.go -------------------------------------------------------------------------------- /internal/templates/python/django.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/python/django.go -------------------------------------------------------------------------------- /internal/templates/python/fastapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/python/fastapi.go -------------------------------------------------------------------------------- /internal/templates/python/flask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/python/flask.go -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58588!SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- 1 | 2 |  3 | 4 | 5 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58589!adaptive-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58590!favicon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58591!icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58592!partial-react-logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58593!react-logo.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58594!react-logo@2x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58595!react-logo@3x.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/.!58596!splash-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/adaptive-icon.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/favicon.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/icon.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/partial-react-logo.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/react-logo.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/react-logo@2x.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/react-logo@3x.png -------------------------------------------------------------------------------- /internal/templates/react-native/assets/react-native/expo/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/assets/react-native/expo/splash-icon.png -------------------------------------------------------------------------------- /internal/templates/react-native/expo-ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react-native/expo-ts.go -------------------------------------------------------------------------------- /internal/templates/react/vite-js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react/vite-js.go -------------------------------------------------------------------------------- /internal/templates/react/vite-ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/react/vite-ts.go -------------------------------------------------------------------------------- /internal/templates/ruby/rails.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/ruby/rails.go -------------------------------------------------------------------------------- /internal/templates/svelte/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/svelte/assets.go -------------------------------------------------------------------------------- /internal/templates/svelte/vite-js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/svelte/vite-js.go -------------------------------------------------------------------------------- /internal/templates/svelte/vite-ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/svelte/vite-ts.go -------------------------------------------------------------------------------- /internal/templates/vue/vite-common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/vue/vite-common.go -------------------------------------------------------------------------------- /internal/templates/vue/vite-js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/vue/vite-js.go -------------------------------------------------------------------------------- /internal/templates/vue/vite-ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/templates/vue/vite-ts.go -------------------------------------------------------------------------------- /internal/ui/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/ui/progress.go -------------------------------------------------------------------------------- /internal/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/utils/crypto.go -------------------------------------------------------------------------------- /internal/utils/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/utils/env.go -------------------------------------------------------------------------------- /internal/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/utils/file.go -------------------------------------------------------------------------------- /internal/utils/flutter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/utils/flutter.go -------------------------------------------------------------------------------- /internal/utils/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/internal/utils/helpers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/main.go -------------------------------------------------------------------------------- /pkg/constants/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/pkg/constants/constants.go -------------------------------------------------------------------------------- /pkg/constants/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/pkg/constants/files.go -------------------------------------------------------------------------------- /scripts/hotfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/hotfix.sh -------------------------------------------------------------------------------- /scripts/init-branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/init-branches.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/status.sh -------------------------------------------------------------------------------- /scripts/test-emoji-validation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/test-emoji-validation.sh -------------------------------------------------------------------------------- /scripts/test-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/test-release.sh -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tienld-0801/tilokit/HEAD/scripts/test.sh --------------------------------------------------------------------------------