├── .changeset ├── README.md └── config.json ├── .github ├── actions │ └── setup │ │ └── action.yml ├── changeset-version.js ├── labeler.yml └── workflows │ ├── release.yml │ ├── validate-linting.yml │ └── validate-pr-title.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── cli ├── .prettierrc ├── .yarnrc.yml ├── CHANGELOG.md ├── README.md ├── eslint.config.js ├── package.json ├── src │ ├── data │ │ ├── constants.ts │ │ ├── get-cli-version.ts │ │ ├── get-user-pkg-manager.ts │ │ ├── options.adapter-solution.ts │ │ ├── options.auth-solution.ts │ │ ├── options.css-solution.ts │ │ ├── options.database-solution.ts │ │ ├── options.dev-tool-solutions.ts │ │ ├── options.ts │ │ └── types.ts │ ├── helper │ │ ├── create-project.ts │ │ ├── initialize-git.ts │ │ ├── initialize-husky.ts │ │ ├── install-dependencies.ts │ │ ├── install-packages.ts │ │ ├── render-next-steps.ts │ │ └── scaffold-project.ts │ ├── index.ts │ ├── installers │ │ ├── dependency-version-map.ts │ │ ├── installer.adapter-auto.ts │ │ ├── installer.drizzle.ts │ │ ├── installer.husky.ts │ │ ├── installer.lucia.ts │ │ ├── installer.tailwind.ts │ │ ├── installer.ts │ │ └── installer.vscode.ts │ ├── questionaire.ts │ └── utility │ │ ├── add-env_variable.ts │ │ ├── add-pkg-dependency.ts │ │ ├── logger.ts │ │ ├── parse-name-and-path.ts │ │ ├── remove-trailing-slash.ts │ │ ├── render-title.ts │ │ ├── update-pkg-json.ts │ │ └── validate-app-name.ts ├── tailwind.config.ts ├── template │ ├── base │ │ ├── .env.example │ │ ├── .npmrc │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ └── settings.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _gitignore │ │ ├── eslint.config.js │ │ ├── package.json │ │ ├── src │ │ │ ├── app.d.ts │ │ │ ├── app.html │ │ │ ├── app.pcss │ │ │ ├── globals.d.ts │ │ │ ├── lib │ │ │ │ ├── images │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── svelte-logo.svg │ │ │ │ │ ├── svelte-welcome.png │ │ │ │ │ └── svelte-welcome.webp │ │ │ │ └── sva │ │ │ │ │ ├── code.svelte │ │ │ │ │ ├── header.svelte │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── layout.svelte │ │ │ │ │ ├── list-container.svelte │ │ │ │ │ ├── list-item.svelte │ │ │ │ │ └── page.svelte │ │ │ └── routes │ │ │ │ ├── +error.svelte │ │ │ │ ├── +layout.svelte │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ ├── static │ │ │ ├── favicon.png │ │ │ └── robots.txt │ │ ├── svelte.config.js │ │ ├── tsconfig.json │ │ └── vite.config.ts │ ├── eslint.config.js │ └── extras │ │ ├── config │ │ ├── svelte-auto.js │ │ ├── svelte-cloudflare.js │ │ ├── svelte-netlify.js │ │ ├── svelte-node.js │ │ └── svelte-vercel.js │ │ ├── drizzle │ │ ├── drizzle.config-mysql.ts │ │ ├── drizzle.config-postgres.ts │ │ ├── drizzle.config-sqlite.ts │ │ └── lib │ │ │ ├── db-mysql.ts │ │ │ ├── db-postgres.ts │ │ │ ├── db-sqlite.ts │ │ │ ├── schema-demo.ts │ │ │ ├── schema-lucia.ts │ │ │ ├── schema-mysql-demo.ts │ │ │ ├── schema-mysql-lucia.ts │ │ │ ├── schema-postgres-demo.ts │ │ │ ├── schema-postgres-lucia.ts │ │ │ ├── schema-sqlite-demo.ts │ │ │ └── schema-sqlite-lucia.ts │ │ ├── lucia │ │ ├── app.d.ts │ │ ├── hooks.server.ts │ │ ├── lib │ │ │ ├── create-session.ts │ │ │ ├── oauth.github.ts │ │ │ ├── oauth.ts │ │ │ ├── use-oauth.ts │ │ │ ├── with-mysql.ts │ │ │ ├── with-postgres.ts │ │ │ └── with-sqlite.ts │ │ └── routes │ │ │ ├── account │ │ │ ├── +page.server.ts │ │ │ └── +page.svelte │ │ │ └── login │ │ │ ├── +page.server.ts │ │ │ ├── +page.svelte │ │ │ └── github │ │ │ ├── +server.ts │ │ │ └── callback │ │ │ └── +server.ts │ │ └── tailwind │ │ ├── app.pcss │ │ ├── postcss.config.cjs │ │ └── tailwind.config.ts ├── tsconfig.eslint.json ├── tsconfig.json └── tsup.config.ts ├── eslint.config.js ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── reset.d.ts ├── tsconfig.json ├── turbo.json └── web ├── .gitignore ├── .npmrc ├── .prettierrc ├── README.md ├── eslint.config.js ├── package.json ├── src ├── app.d.ts ├── app.html ├── index.test.ts ├── lib │ └── index.ts └── routes │ └── +page.svelte ├── static ├── appicon.png ├── favicon.png └── sva-banner.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/changeset-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/changeset-version.js -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/validate-linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/workflows/validate-linting.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.github/workflows/validate-pr-title.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/README.md -------------------------------------------------------------------------------- /cli/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/.prettierrc -------------------------------------------------------------------------------- /cli/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/.yarnrc.yml -------------------------------------------------------------------------------- /cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/CHANGELOG.md -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/eslint.config.js -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/src/data/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/constants.ts -------------------------------------------------------------------------------- /cli/src/data/get-cli-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/get-cli-version.ts -------------------------------------------------------------------------------- /cli/src/data/get-user-pkg-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/get-user-pkg-manager.ts -------------------------------------------------------------------------------- /cli/src/data/options.adapter-solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.adapter-solution.ts -------------------------------------------------------------------------------- /cli/src/data/options.auth-solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.auth-solution.ts -------------------------------------------------------------------------------- /cli/src/data/options.css-solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.css-solution.ts -------------------------------------------------------------------------------- /cli/src/data/options.database-solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.database-solution.ts -------------------------------------------------------------------------------- /cli/src/data/options.dev-tool-solutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.dev-tool-solutions.ts -------------------------------------------------------------------------------- /cli/src/data/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/options.ts -------------------------------------------------------------------------------- /cli/src/data/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/data/types.ts -------------------------------------------------------------------------------- /cli/src/helper/create-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/create-project.ts -------------------------------------------------------------------------------- /cli/src/helper/initialize-git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/initialize-git.ts -------------------------------------------------------------------------------- /cli/src/helper/initialize-husky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/initialize-husky.ts -------------------------------------------------------------------------------- /cli/src/helper/install-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/install-dependencies.ts -------------------------------------------------------------------------------- /cli/src/helper/install-packages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/install-packages.ts -------------------------------------------------------------------------------- /cli/src/helper/render-next-steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/render-next-steps.ts -------------------------------------------------------------------------------- /cli/src/helper/scaffold-project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/helper/scaffold-project.ts -------------------------------------------------------------------------------- /cli/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/index.ts -------------------------------------------------------------------------------- /cli/src/installers/dependency-version-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/dependency-version-map.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.adapter-auto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.adapter-auto.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.drizzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.drizzle.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.husky.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.husky.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.lucia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.lucia.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.tailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.tailwind.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.ts -------------------------------------------------------------------------------- /cli/src/installers/installer.vscode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/installers/installer.vscode.ts -------------------------------------------------------------------------------- /cli/src/questionaire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/questionaire.ts -------------------------------------------------------------------------------- /cli/src/utility/add-env_variable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/add-env_variable.ts -------------------------------------------------------------------------------- /cli/src/utility/add-pkg-dependency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/add-pkg-dependency.ts -------------------------------------------------------------------------------- /cli/src/utility/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/logger.ts -------------------------------------------------------------------------------- /cli/src/utility/parse-name-and-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/parse-name-and-path.ts -------------------------------------------------------------------------------- /cli/src/utility/remove-trailing-slash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/remove-trailing-slash.ts -------------------------------------------------------------------------------- /cli/src/utility/render-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/render-title.ts -------------------------------------------------------------------------------- /cli/src/utility/update-pkg-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/update-pkg-json.ts -------------------------------------------------------------------------------- /cli/src/utility/validate-app-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/src/utility/validate-app-name.ts -------------------------------------------------------------------------------- /cli/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/tailwind.config.ts -------------------------------------------------------------------------------- /cli/template/base/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/.env.example -------------------------------------------------------------------------------- /cli/template/base/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /cli/template/base/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/.prettierignore -------------------------------------------------------------------------------- /cli/template/base/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/.prettierrc -------------------------------------------------------------------------------- /cli/template/base/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cli/template/base/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cli/template/base/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/LICENSE -------------------------------------------------------------------------------- /cli/template/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/README.md -------------------------------------------------------------------------------- /cli/template/base/_gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/_gitignore -------------------------------------------------------------------------------- /cli/template/base/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/eslint.config.js -------------------------------------------------------------------------------- /cli/template/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/package.json -------------------------------------------------------------------------------- /cli/template/base/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/app.d.ts -------------------------------------------------------------------------------- /cli/template/base/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/app.html -------------------------------------------------------------------------------- /cli/template/base/src/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/app.pcss -------------------------------------------------------------------------------- /cli/template/base/src/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/globals.d.ts -------------------------------------------------------------------------------- /cli/template/base/src/lib/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/images/github.svg -------------------------------------------------------------------------------- /cli/template/base/src/lib/images/svelte-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/images/svelte-logo.svg -------------------------------------------------------------------------------- /cli/template/base/src/lib/images/svelte-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/images/svelte-welcome.png -------------------------------------------------------------------------------- /cli/template/base/src/lib/images/svelte-welcome.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/images/svelte-welcome.webp -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/code.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/code.svelte -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/header.svelte -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/index.ts -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/layout.svelte -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/list-container.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/list-container.svelte -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/list-item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/list-item.svelte -------------------------------------------------------------------------------- /cli/template/base/src/lib/sva/page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/lib/sva/page.svelte -------------------------------------------------------------------------------- /cli/template/base/src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/routes/+error.svelte -------------------------------------------------------------------------------- /cli/template/base/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/routes/+layout.svelte -------------------------------------------------------------------------------- /cli/template/base/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/routes/+page.svelte -------------------------------------------------------------------------------- /cli/template/base/src/routes/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/src/routes/+page.ts -------------------------------------------------------------------------------- /cli/template/base/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/static/favicon.png -------------------------------------------------------------------------------- /cli/template/base/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/static/robots.txt -------------------------------------------------------------------------------- /cli/template/base/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/svelte.config.js -------------------------------------------------------------------------------- /cli/template/base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/tsconfig.json -------------------------------------------------------------------------------- /cli/template/base/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/base/vite.config.ts -------------------------------------------------------------------------------- /cli/template/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/eslint.config.js -------------------------------------------------------------------------------- /cli/template/extras/config/svelte-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/config/svelte-auto.js -------------------------------------------------------------------------------- /cli/template/extras/config/svelte-cloudflare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/config/svelte-cloudflare.js -------------------------------------------------------------------------------- /cli/template/extras/config/svelte-netlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/config/svelte-netlify.js -------------------------------------------------------------------------------- /cli/template/extras/config/svelte-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/config/svelte-node.js -------------------------------------------------------------------------------- /cli/template/extras/config/svelte-vercel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/config/svelte-vercel.js -------------------------------------------------------------------------------- /cli/template/extras/drizzle/drizzle.config-mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/drizzle.config-mysql.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/drizzle.config-postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/drizzle.config-postgres.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/drizzle.config-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/drizzle.config-sqlite.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/db-mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/db-mysql.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/db-postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/db-postgres.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/db-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/db-sqlite.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-demo.ts: -------------------------------------------------------------------------------- 1 | export * from "./schema.demo"; 2 | -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-lucia.ts: -------------------------------------------------------------------------------- 1 | export * from "./schema.lucia"; 2 | -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-mysql-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-mysql-demo.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-mysql-lucia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-mysql-lucia.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-postgres-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-postgres-demo.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-postgres-lucia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-postgres-lucia.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-sqlite-demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-sqlite-demo.ts -------------------------------------------------------------------------------- /cli/template/extras/drizzle/lib/schema-sqlite-lucia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/drizzle/lib/schema-sqlite-lucia.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/app.d.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/hooks.server.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/create-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/create-session.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/oauth.github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/oauth.github.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/oauth.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/use-oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/use-oauth.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/with-mysql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/with-mysql.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/with-postgres.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/with-postgres.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/lib/with-sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/lib/with-sqlite.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/account/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/account/+page.server.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/account/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/account/+page.svelte -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/login/+page.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/login/+page.server.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/login/+page.svelte -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/login/github/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/login/github/+server.ts -------------------------------------------------------------------------------- /cli/template/extras/lucia/routes/login/github/callback/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/lucia/routes/login/github/callback/+server.ts -------------------------------------------------------------------------------- /cli/template/extras/tailwind/app.pcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/tailwind/app.pcss -------------------------------------------------------------------------------- /cli/template/extras/tailwind/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/tailwind/postcss.config.cjs -------------------------------------------------------------------------------- /cli/template/extras/tailwind/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/template/extras/tailwind/tailwind.config.ts -------------------------------------------------------------------------------- /cli/tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/tsconfig.eslint.json -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /cli/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/cli/tsup.config.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /reset.d.ts: -------------------------------------------------------------------------------- 1 | import "@total-typescript/ts-reset"; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/turbo.json -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /web/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/.prettierrc -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/README.md -------------------------------------------------------------------------------- /web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/eslint.config.js -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/package.json -------------------------------------------------------------------------------- /web/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/src/app.d.ts -------------------------------------------------------------------------------- /web/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/src/app.html -------------------------------------------------------------------------------- /web/src/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/src/index.test.ts -------------------------------------------------------------------------------- /web/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/src/lib/index.ts -------------------------------------------------------------------------------- /web/src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/src/routes/+page.svelte -------------------------------------------------------------------------------- /web/static/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/static/appicon.png -------------------------------------------------------------------------------- /web/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/static/favicon.png -------------------------------------------------------------------------------- /web/static/sva-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/static/sva-banner.png -------------------------------------------------------------------------------- /web/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/svelte.config.js -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OllieJT/create-sva/HEAD/web/vite.config.ts --------------------------------------------------------------------------------