├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODEOWNERS └── workflows │ ├── build-linux.yml │ ├── build-mac.yml │ ├── build-win.yml │ └── scan.yml ├── .gitignore ├── .gitpod.yml ├── .pnpm-debug.log ├── LICENSE.md ├── README.md ├── SECURITY.md ├── assets ├── app.ico ├── pride.png ├── primary.png ├── secondary.png └── transparent.png ├── bin ├── LICENSE.md ├── cli-linux ├── cli-win.exe ├── flight.lock ├── index.js └── package.json ├── cargo.toml ├── cli.js ├── flight.lock ├── flight.rb ├── index.js ├── install.iss ├── install.ps1 ├── install.sh ├── package.json ├── pnpm-lock.yaml ├── pubKey.pgp ├── requirements.txt ├── scripts ├── .common-util.sh ├── .hooks-default.sh ├── .release-scripts-hooks.sh ├── .version.sh ├── append.sh ├── hotfix_finish.argbash.generated.sh ├── hotfix_finish.sh ├── hotfix_start.argbash.generated.sh ├── hotfix_start.sh ├── mark-executable.sh ├── release.argbash.generated.sh ├── release.sh ├── revert_release.sh └── update-icon.js ├── sonar-project.properties ├── src ├── cmds │ ├── create.js │ └── version.js ├── constants.js ├── js │ ├── cache.js │ ├── fetcher │ │ ├── fetchers.js │ │ ├── index.js │ │ ├── package.json │ │ ├── packageURLMiddleware.js │ │ └── parseImports.js │ ├── lib.js │ ├── libv2.js │ ├── publisher │ │ ├── publish.bat │ │ └── publish.sh │ ├── resolver │ │ ├── index.js │ │ ├── package.json │ │ ├── registries │ │ │ └── npm-http.js │ │ ├── resolver.js │ │ └── yarn.lock │ └── wrapper-js.js ├── lib.js ├── luau │ ├── lib.js │ ├── luau-install-linux │ ├── luau-install-macos │ └── luau-install-win64.exe ├── packages │ ├── create-next-app │ │ ├── README.md │ │ ├── create-app.ts │ │ ├── dist │ │ │ ├── index.js │ │ │ ├── next-env.d.ts │ │ │ └── templates │ │ │ │ ├── default │ │ │ │ ├── README-template.md │ │ │ │ ├── eslintrc.json │ │ │ │ ├── gitignore │ │ │ │ ├── next.config.js │ │ │ │ ├── pages │ │ │ │ │ ├── _app.js │ │ │ │ │ ├── api │ │ │ │ │ │ └── hello.js │ │ │ │ │ └── index.js │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── vercel.svg │ │ │ │ └── styles │ │ │ │ │ ├── Home.module.css │ │ │ │ │ └── globals.css │ │ │ │ └── typescript │ │ │ │ ├── README-template.md │ │ │ │ ├── eslintrc.json │ │ │ │ ├── gitignore │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.js │ │ │ │ ├── pages │ │ │ │ ├── _app.tsx │ │ │ │ ├── api │ │ │ │ │ └── hello.ts │ │ │ │ └── index.tsx │ │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ └── vercel.svg │ │ │ │ ├── styles │ │ │ │ ├── Home.module.css │ │ │ │ └── globals.css │ │ │ │ └── tsconfig.json │ │ ├── helpers │ │ │ ├── examples.ts │ │ │ ├── get-pkg-manager.ts │ │ │ ├── git.ts │ │ │ ├── install.ts │ │ │ ├── is-folder-empty.ts │ │ │ ├── is-online.ts │ │ │ ├── is-writeable.ts │ │ │ ├── make-dir.ts │ │ │ └── validate-pkg.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── templates │ │ │ ├── default │ │ │ │ ├── README-template.md │ │ │ │ ├── eslintrc.json │ │ │ │ ├── gitignore │ │ │ │ ├── next.config.js │ │ │ │ ├── pages │ │ │ │ │ ├── _app.js │ │ │ │ │ ├── api │ │ │ │ │ │ └── hello.js │ │ │ │ │ └── index.js │ │ │ │ ├── public │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── vercel.svg │ │ │ │ └── styles │ │ │ │ │ ├── Home.module.css │ │ │ │ │ └── globals.css │ │ │ └── typescript │ │ │ │ ├── README-template.md │ │ │ │ ├── eslintrc.json │ │ │ │ ├── gitignore │ │ │ │ ├── next-env.d.ts │ │ │ │ ├── next.config.js │ │ │ │ ├── pages │ │ │ │ ├── _app.tsx │ │ │ │ ├── api │ │ │ │ │ └── hello.ts │ │ │ │ └── index.tsx │ │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ └── vercel.svg │ │ │ │ ├── styles │ │ │ │ ├── Home.module.css │ │ │ │ └── globals.css │ │ │ │ └── tsconfig.json │ │ ├── tsconfig.json │ │ └── yarn.lock │ └── create-redwood-app │ │ ├── .babelrc.js │ │ ├── .pnpm-debug.log │ │ ├── README.md │ │ ├── dist │ │ ├── collectInput.js │ │ ├── create-redwood-app.js │ │ └── telemetry.js │ │ ├── jest.config.js │ │ ├── jsconfig.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── src │ │ ├── __tests__ │ │ │ └── web-template.test.js │ │ ├── create-redwood-app.js │ │ └── telemetry.js │ │ ├── template │ │ ├── .editorconfig │ │ ├── .env │ │ ├── .env.defaults │ │ ├── .env.example │ │ ├── .nvmrc │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── .yarn │ │ │ └── releases │ │ │ │ └── yarn-3.2.1.cjs │ │ ├── .yarnrc.yml │ │ ├── README.md │ │ ├── api │ │ │ ├── db │ │ │ │ └── schema.prisma │ │ │ ├── jest.config.js │ │ │ ├── package.json │ │ │ ├── server.config.js │ │ │ ├── src │ │ │ │ ├── directives │ │ │ │ │ ├── requireAuth │ │ │ │ │ │ ├── requireAuth.test.ts │ │ │ │ │ │ └── requireAuth.ts │ │ │ │ │ └── skipAuth │ │ │ │ │ │ ├── skipAuth.test.ts │ │ │ │ │ │ └── skipAuth.ts │ │ │ │ ├── functions │ │ │ │ │ └── graphql.ts │ │ │ │ ├── graphql │ │ │ │ │ └── .keep │ │ │ │ ├── lib │ │ │ │ │ ├── auth.ts │ │ │ │ │ ├── db.ts │ │ │ │ │ └── logger.ts │ │ │ │ └── services │ │ │ │ │ └── .keep │ │ │ └── tsconfig.json │ │ ├── gitignore.template │ │ ├── graphql.config.js │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── prettier.config.js │ │ ├── redwood.toml │ │ ├── scripts │ │ │ ├── .keep │ │ │ ├── seed.ts │ │ │ └── tsconfig.json │ │ └── web │ │ │ ├── jest.config.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ ├── README.md │ │ │ ├── favicon.png │ │ │ └── robots.txt │ │ │ ├── src │ │ │ ├── App.tsx │ │ │ ├── Routes.tsx │ │ │ ├── components │ │ │ │ └── .keep │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── layouts │ │ │ │ └── .keep │ │ │ └── pages │ │ │ │ ├── FatalErrorPage │ │ │ │ └── FatalErrorPage.tsx │ │ │ │ └── NotFoundPage │ │ │ │ └── NotFoundPage.tsx │ │ │ └── tsconfig.json │ │ └── yarn.lock ├── py │ ├── fetcher │ │ └── fetch.js │ └── lib.js ├── rs │ ├── lib.js │ ├── resolver │ │ └── resolve.js │ └── rust-install └── shared │ ├── cacheService.js │ ├── checks.js │ ├── extendedfs.js │ ├── logger.js │ └── parser │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── index.node │ ├── package.json │ ├── src │ ├── constants.rs │ ├── init.rs │ └── lib.rs │ └── yarn.lock └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | *.js @CompeyDev 2 | *.go @monitrr 3 | -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.github/workflows/build-mac.yml -------------------------------------------------------------------------------- /.github/workflows/build-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.github/workflows/build-win.yml -------------------------------------------------------------------------------- /.github/workflows/scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.github/workflows/scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.pnpm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/.pnpm-debug.log -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/assets/app.ico -------------------------------------------------------------------------------- /assets/pride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/assets/pride.png -------------------------------------------------------------------------------- /assets/primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/assets/primary.png -------------------------------------------------------------------------------- /assets/secondary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/assets/secondary.png -------------------------------------------------------------------------------- /assets/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/assets/transparent.png -------------------------------------------------------------------------------- /bin/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/LICENSE.md -------------------------------------------------------------------------------- /bin/cli-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/cli-linux -------------------------------------------------------------------------------- /bin/cli-win.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/cli-win.exe -------------------------------------------------------------------------------- /bin/flight.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/flight.lock -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/index.js -------------------------------------------------------------------------------- /bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/bin/package.json -------------------------------------------------------------------------------- /cargo.toml: -------------------------------------------------------------------------------- 1 | [dependencies] 2 | chrono = "0.4.19" -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/cli.js -------------------------------------------------------------------------------- /flight.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/flight.lock -------------------------------------------------------------------------------- /flight.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/flight.rb -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/index.js -------------------------------------------------------------------------------- /install.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/install.iss -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/install.ps1 -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/install.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pubKey.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/pubKey.pgp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/.common-util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/.common-util.sh -------------------------------------------------------------------------------- /scripts/.hooks-default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/.hooks-default.sh -------------------------------------------------------------------------------- /scripts/.release-scripts-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/.release-scripts-hooks.sh -------------------------------------------------------------------------------- /scripts/.version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export VERSION=0.15.0 # 4 | -------------------------------------------------------------------------------- /scripts/append.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/append.sh -------------------------------------------------------------------------------- /scripts/hotfix_finish.argbash.generated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/hotfix_finish.argbash.generated.sh -------------------------------------------------------------------------------- /scripts/hotfix_finish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/hotfix_finish.sh -------------------------------------------------------------------------------- /scripts/hotfix_start.argbash.generated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/hotfix_start.argbash.generated.sh -------------------------------------------------------------------------------- /scripts/hotfix_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/hotfix_start.sh -------------------------------------------------------------------------------- /scripts/mark-executable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/mark-executable.sh -------------------------------------------------------------------------------- /scripts/release.argbash.generated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/release.argbash.generated.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/revert_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/revert_release.sh -------------------------------------------------------------------------------- /scripts/update-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/scripts/update-icon.js -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/cmds/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/cmds/create.js -------------------------------------------------------------------------------- /src/cmds/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/cmds/version.js -------------------------------------------------------------------------------- /src/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/constants.js -------------------------------------------------------------------------------- /src/js/cache.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/js/fetcher/fetchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/fetcher/fetchers.js -------------------------------------------------------------------------------- /src/js/fetcher/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/fetcher/index.js -------------------------------------------------------------------------------- /src/js/fetcher/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/fetcher/package.json -------------------------------------------------------------------------------- /src/js/fetcher/packageURLMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/fetcher/packageURLMiddleware.js -------------------------------------------------------------------------------- /src/js/fetcher/parseImports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/fetcher/parseImports.js -------------------------------------------------------------------------------- /src/js/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/lib.js -------------------------------------------------------------------------------- /src/js/libv2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/libv2.js -------------------------------------------------------------------------------- /src/js/publisher/publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/publisher/publish.bat -------------------------------------------------------------------------------- /src/js/publisher/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/publisher/publish.sh -------------------------------------------------------------------------------- /src/js/resolver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/resolver/index.js -------------------------------------------------------------------------------- /src/js/resolver/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/resolver/package.json -------------------------------------------------------------------------------- /src/js/resolver/registries/npm-http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/resolver/registries/npm-http.js -------------------------------------------------------------------------------- /src/js/resolver/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/resolver/resolver.js -------------------------------------------------------------------------------- /src/js/resolver/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/resolver/yarn.lock -------------------------------------------------------------------------------- /src/js/wrapper-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/js/wrapper-js.js -------------------------------------------------------------------------------- /src/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/lib.js -------------------------------------------------------------------------------- /src/luau/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/luau/lib.js -------------------------------------------------------------------------------- /src/luau/luau-install-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/luau/luau-install-linux -------------------------------------------------------------------------------- /src/luau/luau-install-macos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/luau/luau-install-macos -------------------------------------------------------------------------------- /src/luau/luau-install-win64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/luau/luau-install-win64.exe -------------------------------------------------------------------------------- /src/packages/create-next-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/README.md -------------------------------------------------------------------------------- /src/packages/create-next-app/create-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/create-app.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/index.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/next-env.d.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/README-template.md -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/gitignore -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/next.config.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/pages/_app.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/pages/api/hello.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/pages/index.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/public/favicon.ico -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/public/vercel.svg -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/styles/Home.module.css -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/default/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/default/styles/globals.css -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/README-template.md -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/gitignore -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/next-env.d.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/next.config.js -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/pages/_app.tsx -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/pages/api/hello.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/pages/index.tsx -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/public/favicon.ico -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/public/vercel.svg -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/styles/Home.module.css -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/styles/globals.css -------------------------------------------------------------------------------- /src/packages/create-next-app/dist/templates/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/dist/templates/typescript/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/examples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/examples.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/get-pkg-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/get-pkg-manager.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/git.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/install.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/is-folder-empty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/is-folder-empty.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/is-online.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/is-online.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/is-writeable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/is-writeable.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/make-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/make-dir.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/helpers/validate-pkg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/helpers/validate-pkg.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/index.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/package.json -------------------------------------------------------------------------------- /src/packages/create-next-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/README-template.md -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/gitignore -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/next.config.js -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/pages/_app.js -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/pages/api/hello.js -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/pages/index.js -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/public/favicon.ico -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/public/vercel.svg -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/styles/Home.module.css -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/default/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/default/styles/globals.css -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/README-template.md -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/gitignore -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/next-env.d.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/next.config.js -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/pages/_app.tsx -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/pages/api/hello.ts -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/pages/index.tsx -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/public/favicon.ico -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/public/vercel.svg -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/styles/Home.module.css -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/styles/globals.css -------------------------------------------------------------------------------- /src/packages/create-next-app/templates/typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/templates/typescript/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-next-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-next-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-next-app/yarn.lock -------------------------------------------------------------------------------- /src/packages/create-redwood-app/.babelrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: '../../babel.config.js' } 2 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/.pnpm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/.pnpm-debug.log -------------------------------------------------------------------------------- /src/packages/create-redwood-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/README.md -------------------------------------------------------------------------------- /src/packages/create-redwood-app/dist/collectInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/dist/collectInput.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/dist/create-redwood-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/dist/create-redwood-app.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/dist/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/dist/telemetry.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/jest.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/jsconfig.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/package.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/packages/create-redwood-app/src/__tests__/web-template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/src/__tests__/web-template.test.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/src/create-redwood-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/src/create-redwood-app.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/src/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/src/telemetry.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.editorconfig -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.env -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.env.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.env.defaults -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.env.example -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.vscode/extensions.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.vscode/launch.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.vscode/settings.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.yarn/releases/yarn-3.2.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.yarn/releases/yarn-3.2.1.cjs -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/.yarnrc.yml -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/README.md -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/db/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/db/schema.prisma -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/jest.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/package.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/server.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/server.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/directives/requireAuth/requireAuth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/directives/requireAuth/requireAuth.test.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/directives/requireAuth/requireAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/directives/requireAuth/requireAuth.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/directives/skipAuth/skipAuth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/directives/skipAuth/skipAuth.test.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/directives/skipAuth/skipAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/directives/skipAuth/skipAuth.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/functions/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/functions/graphql.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/graphql/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/lib/auth.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/lib/db.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/src/lib/logger.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/src/services/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/api/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/gitignore.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/gitignore.template -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/graphql.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/graphql.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/jest.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/package.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/prettier.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/redwood.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/redwood.toml -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/scripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/scripts/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/scripts/seed.ts -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/scripts/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/jest.config.js -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/package.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/public/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/public/README.md -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/public/favicon.png -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/src/App.tsx -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/src/Routes.tsx -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/components/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/src/index.html -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/layouts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/pages/FatalErrorPage/FatalErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/src/pages/FatalErrorPage/FatalErrorPage.tsx -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/src/pages/NotFoundPage/NotFoundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/src/pages/NotFoundPage/NotFoundPage.tsx -------------------------------------------------------------------------------- /src/packages/create-redwood-app/template/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/template/web/tsconfig.json -------------------------------------------------------------------------------- /src/packages/create-redwood-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/packages/create-redwood-app/yarn.lock -------------------------------------------------------------------------------- /src/py/fetcher/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/py/fetcher/fetch.js -------------------------------------------------------------------------------- /src/py/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/py/lib.js -------------------------------------------------------------------------------- /src/rs/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/rs/lib.js -------------------------------------------------------------------------------- /src/rs/resolver/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/rs/resolver/resolve.js -------------------------------------------------------------------------------- /src/rs/rust-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/rs/rust-install -------------------------------------------------------------------------------- /src/shared/cacheService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/cacheService.js -------------------------------------------------------------------------------- /src/shared/checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/checks.js -------------------------------------------------------------------------------- /src/shared/extendedfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/extendedfs.js -------------------------------------------------------------------------------- /src/shared/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/logger.js -------------------------------------------------------------------------------- /src/shared/parser/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | node_modules 3 | -------------------------------------------------------------------------------- /src/shared/parser/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/Cargo.lock -------------------------------------------------------------------------------- /src/shared/parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/Cargo.toml -------------------------------------------------------------------------------- /src/shared/parser/index.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/index.node -------------------------------------------------------------------------------- /src/shared/parser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/package.json -------------------------------------------------------------------------------- /src/shared/parser/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/src/constants.rs -------------------------------------------------------------------------------- /src/shared/parser/src/init.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/src/init.rs -------------------------------------------------------------------------------- /src/shared/parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/src/lib.rs -------------------------------------------------------------------------------- /src/shared/parser/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/src/shared/parser/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flightpkg/flight/HEAD/yarn.lock --------------------------------------------------------------------------------