├── .all-contributorsrc ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── library-scripts │ └── node-debian.sh ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── codeql │ └── codeql-config.yml ├── labeler.yml └── workflows │ ├── azuresdkdrop.yml │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── deploy-docs.yml │ ├── detection-e2e-tests.yml │ ├── dockerhub.yml │ ├── e2e.yml │ └── labeler.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── SECURITY.md ├── cypress.json ├── cypress ├── fixtures │ ├── blazor-starter │ │ ├── Api │ │ │ ├── Api.csproj │ │ │ ├── WeatherForecastFunction.cs │ │ │ └── host.json │ │ ├── ApiIsolated │ │ │ ├── ApiIsolated.csproj │ │ │ ├── Program.cs │ │ │ ├── WeatherForecastFunction.cs │ │ │ └── host.json │ │ ├── BlazorStaticWebApps.sln │ │ ├── Client │ │ │ ├── App.razor │ │ │ ├── Client.csproj │ │ │ ├── Pages │ │ │ │ ├── Counter.razor │ │ │ │ ├── FetchData.razor │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor │ │ │ │ ├── MainLayout.razor.css │ │ │ │ ├── NavMenu.razor │ │ │ │ ├── NavMenu.razor.css │ │ │ │ └── SurveyPrompt.razor │ │ │ ├── _Imports.razor │ │ │ ├── staticwebapp.config.json │ │ │ └── wwwroot │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── bootstrap │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── open-iconic │ │ │ │ │ ├── FONT-LICENSE │ │ │ │ │ ├── ICON-LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── font │ │ │ │ │ ├── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon-192.png │ │ │ │ └── index.html │ │ ├── Shared │ │ │ ├── Shared.csproj │ │ │ └── WeatherForecast.cs │ │ ├── custom-401.html │ │ ├── custom-403.html │ │ ├── custom-404.html │ │ └── swa-cli.config.json │ └── static │ │ ├── .github │ │ └── workflows │ │ │ └── azure-static-web-apps-NON-CONFORM.yml │ │ ├── .gitignore │ │ ├── api │ │ ├── echo │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── headers │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── host.json │ │ ├── info │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── status │ │ │ ├── function.json │ │ │ └── index.js │ │ ├── app │ │ ├── another folder │ │ │ └── index.html │ │ ├── custom-401.html │ │ ├── custom-403.html │ │ ├── custom-404.html │ │ ├── folder │ │ │ └── index.html │ │ ├── foo.bar │ │ ├── foo.html │ │ ├── index.html │ │ ├── index2.html │ │ ├── staticwebapp.config.json │ │ ├── test.swaconfig │ │ └── with space.html │ │ └── swa-cli.config.json ├── integration │ ├── authentication.js │ ├── authorization.js │ ├── error-pages.js │ ├── functions.js │ ├── mime-type.js │ └── route-rules.js ├── plugins │ └── index.js └── support │ ├── commands.js │ └── index.js ├── docs ├── DEVELOPER.md ├── swa-cli-architecture.png ├── swa-cli-logo.svg ├── swa-cli.config.json └── www │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── docs │ ├── cli │ │ ├── _category_.json │ │ ├── docker.md │ │ ├── env-vars.md │ │ ├── local-auth.md │ │ ├── swa-build.md │ │ ├── swa-config.md │ │ ├── swa-deploy.md │ │ ├── swa-init.md │ │ ├── swa-login.md │ │ ├── swa-start.md │ │ └── swa.md │ ├── contribute │ │ ├── 1-intro.md │ │ ├── 2-developer.md │ │ ├── 3-contributors.md │ │ ├── 99-troubleshooting.md │ │ └── _category_.json │ ├── intro.md │ └── use │ │ ├── 1-install.md │ │ ├── 2-emulator.md │ │ ├── 3-api-server.md │ │ ├── 4-deploy.md │ │ ├── 5-config.md │ │ └── _category_.json │ ├── docusaurus.config.js │ ├── package-lock.json │ ├── package.json │ ├── sidebars.js │ ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.js │ │ └── index.module.css │ └── static │ ├── .nojekyll │ └── img │ ├── favicon.ico │ ├── install-cli.svg │ ├── landing-configure-icon.svg │ ├── landing-configure.svg │ ├── landing-deploy-icon.svg │ ├── landing-deploy.svg │ ├── landing-init-icon.svg │ ├── landing-init.svg │ ├── landing-install-icon.svg │ ├── landing-install.svg │ ├── landing-login-icon.svg │ ├── landing-login.svg │ ├── landing-start-icon.svg │ ├── landing-start.svg │ ├── read-docs.svg │ ├── swa-404.png │ ├── swa-arch.png │ ├── swa-cli-arch.png │ ├── swa-cli-local-auth.png │ ├── swa-cli-logos │ ├── swa-cli-logo-black.svg │ ├── swa-cli-logo-grad.svg │ ├── swa-cli-logo-outline-3dbdcf.svg │ ├── swa-cli-logo-outline-black.svg │ ├── swa-cli-logo-outline-cc4fc2.svg │ ├── swa-cli-logo-outline-e1325a.svg │ ├── swa-cli-logo-outline-eb5281.svg │ ├── swa-cli-logo-outline-ef87aa.svg │ ├── swa-cli-logo-outline-grad.svg │ ├── swa-cli-logo-outline.svg │ ├── swa-cli-logo-white.svg │ └── swa-cli-logo.svg │ └── whats-new.svg ├── e2e ├── .gitignore ├── __snapshots__ │ └── detect.spec.js.snap ├── detect.js ├── detect.spec.js ├── fixtures │ ├── astro-node │ │ ├── astro preact │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── Counter.css │ │ │ │ │ └── Counter.tsx │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ └── node │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ └── extensions.json │ │ │ ├── get-hello │ │ │ ├── function.json │ │ │ └── index.js │ │ │ ├── host.json │ │ │ └── package.json │ └── static-node-ts │ │ ├── .nojekyll │ │ ├── README.md │ │ ├── index.html │ │ └── node-ts │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── .vscode │ │ └── extensions.json │ │ ├── get-hello │ │ ├── function.json │ │ └── index.ts │ │ ├── host.json │ │ ├── package.json │ │ └── tsconfig.json ├── samples │ ├── .gitignore │ ├── api │ │ ├── dotnet-csx │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── dotnet-csx.csproj │ │ │ ├── hello │ │ │ │ ├── function.json │ │ │ │ ├── readme.md │ │ │ │ └── run.csx │ │ │ └── host.json │ │ ├── dotnet-isolated │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── Program.cs │ │ │ ├── dotnet-isolated.csproj │ │ │ ├── hello.cs │ │ │ └── host.json │ │ ├── dotnet │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── dotnet.csproj │ │ │ ├── hello.cs │ │ │ └── host.json │ │ ├── node-ts │ │ │ ├── .funcignore │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── hello │ │ │ │ ├── function.json │ │ │ │ └── index.ts │ │ │ ├── host.json │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── node │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── hello │ │ │ │ ├── function.json │ │ │ │ └── index.js │ │ │ ├── host.json │ │ │ └── package.json │ │ └── python │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ └── extensions.json │ │ │ ├── getting_started.md │ │ │ ├── hello │ │ │ ├── __init__.py │ │ │ └── function.json │ │ │ ├── host.json │ │ │ └── requirements.txt │ ├── app │ │ ├── angular-scully │ │ │ ├── .browserslistrc │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── README.md │ │ │ ├── angular.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.ts │ │ │ │ │ └── app.module.ts │ │ │ │ ├── assets │ │ │ │ │ └── .gitkeep │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ └── styles.css │ │ │ ├── tsconfig.app.json │ │ │ └── tsconfig.json │ │ ├── angular │ │ │ ├── .browserslistrc │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── tasks.json │ │ │ ├── README.md │ │ │ ├── angular.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app.component.ts │ │ │ │ │ └── app.module.ts │ │ │ │ ├── assets │ │ │ │ │ └── .gitkeep │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ └── styles.css │ │ │ ├── tsconfig.app.json │ │ │ └── tsconfig.json │ │ ├── astro-alpine │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── Counter.astro │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-lit │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── assets │ │ │ │ │ └── logo.svg │ │ │ │ ├── favicon.ico │ │ │ │ └── robots.txt │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── Counter.js │ │ │ │ │ ├── Lorem.astro │ │ │ │ │ └── Test.js │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-multiple │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── A.astro │ │ │ │ │ ├── B.astro │ │ │ │ │ ├── LitCounter.js │ │ │ │ │ ├── PreactCounter.tsx │ │ │ │ │ ├── PreactSFC.tsx │ │ │ │ │ ├── ReactCounter.jsx │ │ │ │ │ ├── SolidCounter.tsx │ │ │ │ │ ├── SvelteCounter.svelte │ │ │ │ │ ├── VueCounter.vue │ │ │ │ │ └── index.ts │ │ │ │ ├── pages │ │ │ │ │ └── index.astro │ │ │ │ └── styles │ │ │ │ │ └── global.css │ │ │ └── tsconfig.json │ │ ├── astro-preact │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── Counter.css │ │ │ │ │ └── Counter.tsx │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-react │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── Counter.css │ │ │ │ │ └── Counter.jsx │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-solid │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── Counter.css │ │ │ │ │ └── Counter.jsx │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-svelte │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── Counter.svelte │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro-vue │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── Counter.vue │ │ │ │ └── pages │ │ │ │ │ └── index.astro │ │ │ └── tsconfig.json │ │ ├── astro │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── .stackblitzrc │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ └── launch.json │ │ │ ├── README.md │ │ │ ├── astro.config.mjs │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ └── logo.svg │ │ │ ├── sandbox.config.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── Logo.astro │ │ │ │ ├── content │ │ │ │ │ └── Tour.md │ │ │ │ ├── pages │ │ │ │ │ └── index.astro │ │ │ │ └── styles │ │ │ │ │ ├── global.css │ │ │ │ │ └── home.css │ │ │ └── tsconfig.json │ │ ├── aurelia │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── README.md │ │ │ ├── aurelia_project │ │ │ │ ├── aurelia.json │ │ │ │ ├── generators │ │ │ │ │ ├── attribute.js │ │ │ │ │ ├── attribute.json │ │ │ │ │ ├── binding-behavior.js │ │ │ │ │ ├── binding-behavior.json │ │ │ │ │ ├── component.js │ │ │ │ │ ├── component.json │ │ │ │ │ ├── element.js │ │ │ │ │ ├── element.json │ │ │ │ │ ├── generator.js │ │ │ │ │ ├── generator.json │ │ │ │ │ ├── task.js │ │ │ │ │ ├── task.json │ │ │ │ │ ├── value-converter.js │ │ │ │ │ └── value-converter.json │ │ │ │ └── tasks │ │ │ │ │ ├── build.js │ │ │ │ │ ├── build.json │ │ │ │ │ ├── run.js │ │ │ │ │ └── run.json │ │ │ ├── babel.config.json │ │ │ ├── config │ │ │ │ ├── environment.json │ │ │ │ └── environment.production.json │ │ │ ├── index.ejs │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app.html │ │ │ │ ├── app.js │ │ │ │ ├── main.js │ │ │ │ └── resources │ │ │ │ │ └── index.js │ │ │ ├── static │ │ │ │ └── favicon.ico │ │ │ └── webpack.config.js │ │ ├── blazor-wasm │ │ │ ├── App.razor │ │ │ ├── Pages │ │ │ │ ├── Counter.razor │ │ │ │ ├── FetchData.razor │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── Shared │ │ │ │ ├── MainLayout.razor │ │ │ │ ├── MainLayout.razor.css │ │ │ │ ├── NavMenu.razor │ │ │ │ ├── NavMenu.razor.css │ │ │ │ └── SurveyPrompt.razor │ │ │ ├── _Imports.razor │ │ │ ├── blazor-wasm.csproj │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ ├── bootstrap │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── open-iconic │ │ │ │ │ ├── FONT-LICENSE │ │ │ │ │ ├── ICON-LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ └── font │ │ │ │ │ ├── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ │ ├── favicon.ico │ │ │ │ ├── icon-192.png │ │ │ │ ├── index.html │ │ │ │ └── sample-data │ │ │ │ └── weather.json │ │ ├── brunch │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── assets │ │ │ │ │ └── index.html │ │ │ │ ├── initialize.js │ │ │ │ └── styles.css │ │ │ ├── brunch-config.js │ │ │ └── package.json │ │ ├── capacitor │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── capacitor.config.json │ │ │ ├── package.json │ │ │ └── www │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ └── capacitor-welcome.js │ │ │ │ └── manifest.json │ │ ├── docsify │ │ │ ├── .nojekyll │ │ │ ├── README.md │ │ │ └── index.html │ │ ├── docusaurus │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── babel.config.js │ │ │ ├── blog │ │ │ │ ├── 2019-05-28-first-blog-post.md │ │ │ │ ├── 2019-05-29-long-blog-post.md │ │ │ │ ├── 2021-08-01-mdx-blog-post.mdx │ │ │ │ ├── 2021-08-26-welcome │ │ │ │ │ ├── docusaurus-plushie-banner.jpeg │ │ │ │ │ └── index.md │ │ │ │ └── authors.yml │ │ │ ├── docs │ │ │ │ ├── intro.md │ │ │ │ ├── tutorial-basics │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── congratulations.md │ │ │ │ │ ├── create-a-blog-post.md │ │ │ │ │ ├── create-a-document.md │ │ │ │ │ ├── create-a-page.md │ │ │ │ │ ├── deploy-your-site.md │ │ │ │ │ └── markdown-features.mdx │ │ │ │ └── tutorial-extras │ │ │ │ │ ├── _category_.json │ │ │ │ │ ├── img │ │ │ │ │ ├── docsVersionDropdown.png │ │ │ │ │ └── localeDropdown.png │ │ │ │ │ ├── manage-docs-versions.md │ │ │ │ │ └── translate-your-site.md │ │ │ ├── docusaurus.config.js │ │ │ ├── package.json │ │ │ ├── sidebars.js │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── HomepageFeatures │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── styles.module.css │ │ │ │ ├── css │ │ │ │ │ └── custom.css │ │ │ │ └── pages │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.module.css │ │ │ │ │ └── markdown-page.md │ │ │ └── static │ │ │ │ ├── .nojekyll │ │ │ │ └── img │ │ │ │ ├── docusaurus.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── logo.svg │ │ │ │ ├── undraw_docusaurus_mountain.svg │ │ │ │ ├── undraw_docusaurus_react.svg │ │ │ │ └── undraw_docusaurus_tree.svg │ │ ├── eleventy │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ └── package.json │ │ ├── elm │ │ │ ├── elm.json │ │ │ └── src │ │ │ │ └── Main.elm │ │ ├── ember │ │ │ ├── .editorconfig │ │ │ ├── .ember-cli │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.js │ │ │ ├── .github │ │ │ │ └── workflows │ │ │ │ │ └── ci.yml │ │ │ ├── .gitignore │ │ │ ├── .prettierignore │ │ │ ├── .prettierrc.js │ │ │ ├── .template-lintrc.js │ │ │ ├── .watchmanconfig │ │ │ ├── README.md │ │ │ ├── app │ │ │ │ ├── app.js │ │ │ │ ├── components │ │ │ │ │ └── .gitkeep │ │ │ │ ├── controllers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── helpers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── index.html │ │ │ │ ├── models │ │ │ │ │ └── .gitkeep │ │ │ │ ├── router.js │ │ │ │ ├── routes │ │ │ │ │ └── .gitkeep │ │ │ │ ├── styles │ │ │ │ │ └── app.css │ │ │ │ └── templates │ │ │ │ │ └── application.hbs │ │ │ ├── config │ │ │ │ ├── ember-cli-update.json │ │ │ │ ├── environment.js │ │ │ │ ├── optional-features.json │ │ │ │ └── targets.js │ │ │ ├── ember-cli-build.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ ├── testem.js │ │ │ ├── tests │ │ │ │ ├── helpers │ │ │ │ │ └── index.js │ │ │ │ ├── index.html │ │ │ │ ├── integration │ │ │ │ │ └── .gitkeep │ │ │ │ ├── test-helper.js │ │ │ │ └── unit │ │ │ │ │ └── .gitkeep │ │ │ └── vendor │ │ │ │ └── .gitkeep │ │ ├── flutter │ │ │ ├── .gitignore │ │ │ ├── .metadata │ │ │ ├── README.md │ │ │ ├── analysis_options.yaml │ │ │ ├── android │ │ │ │ ├── .gitignore │ │ │ │ ├── app │ │ │ │ │ ├── build.gradle │ │ │ │ │ └── src │ │ │ │ │ │ ├── main │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── kotlin │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── example │ │ │ │ │ │ │ │ └── flutterapp │ │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ └── launch_background.xml │ │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ │ └── profile │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── build.gradle │ │ │ │ ├── gradle.properties │ │ │ │ ├── gradle │ │ │ │ │ └── wrapper │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ └── settings.gradle │ │ │ ├── ios │ │ │ │ ├── .gitignore │ │ │ │ ├── Flutter │ │ │ │ │ ├── AppFrameworkInfo.plist │ │ │ │ │ ├── Debug.xcconfig │ │ │ │ │ └── Release.xcconfig │ │ │ │ ├── Runner.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── Runner.xcscheme │ │ │ │ ├── Runner.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ │ └── Runner │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ │ │ └── LaunchImage.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── LaunchImage.png │ │ │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Runner-Bridging-Header.h │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── pubspec.lock │ │ │ ├── pubspec.yaml │ │ │ ├── test │ │ │ │ └── widget_test.dart │ │ │ ├── web │ │ │ │ ├── favicon.png │ │ │ │ ├── icons │ │ │ │ │ ├── Icon-192.png │ │ │ │ │ ├── Icon-512.png │ │ │ │ │ ├── Icon-maskable-192.png │ │ │ │ │ └── Icon-maskable-512.png │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ └── windows │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── flutter │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── generated_plugin_registrant.cc │ │ │ │ ├── generated_plugin_registrant.h │ │ │ │ └── generated_plugins.cmake │ │ │ │ └── runner │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Runner.rc │ │ │ │ ├── flutter_window.cpp │ │ │ │ ├── flutter_window.h │ │ │ │ ├── main.cpp │ │ │ │ ├── resource.h │ │ │ │ ├── resources │ │ │ │ └── app_icon.ico │ │ │ │ ├── runner.exe.manifest │ │ │ │ ├── utils.cpp │ │ │ │ ├── utils.h │ │ │ │ ├── win32_window.cpp │ │ │ │ └── win32_window.h │ │ ├── gridsome │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── gridsome.config.js │ │ │ ├── gridsome.server.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ └── README.md │ │ │ │ ├── favicon.png │ │ │ │ ├── layouts │ │ │ │ │ ├── Default.vue │ │ │ │ │ └── README.md │ │ │ │ ├── main.js │ │ │ │ ├── pages │ │ │ │ │ ├── About.vue │ │ │ │ │ ├── Index.vue │ │ │ │ │ └── README.md │ │ │ │ └── templates │ │ │ │ │ └── README.md │ │ │ ├── static │ │ │ │ └── README.md │ │ │ └── yarn.lock │ │ ├── hexo │ │ │ ├── .github │ │ │ │ └── dependabot.yml │ │ │ ├── .gitignore │ │ │ ├── _config.landscape.yml │ │ │ ├── _config.yml │ │ │ ├── package.json │ │ │ ├── scaffolds │ │ │ │ ├── draft.md │ │ │ │ ├── page.md │ │ │ │ └── post.md │ │ │ ├── source │ │ │ │ └── _posts │ │ │ │ │ └── hello-world.md │ │ │ ├── themes │ │ │ │ └── .gitkeep │ │ │ └── yarn.lock │ │ ├── hugo │ │ │ ├── archetypes │ │ │ │ └── default.md │ │ │ ├── config.toml │ │ │ ├── content │ │ │ │ └── posts │ │ │ │ │ └── my-first-post.md │ │ │ └── themes │ │ │ │ └── ananke │ │ │ │ ├── .gitignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── archetypes │ │ │ │ └── default.md │ │ │ │ ├── assets │ │ │ │ └── ananke │ │ │ │ │ ├── css │ │ │ │ │ ├── _code.css │ │ │ │ │ ├── _hugo-internal-templates.css │ │ │ │ │ ├── _social-icons.css │ │ │ │ │ ├── _styles.css │ │ │ │ │ └── _tachyons.css │ │ │ │ │ └── socials │ │ │ │ │ ├── facebook.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── rss.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── stackoverflow.svg │ │ │ │ │ ├── tiktok.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ └── youtube.svg │ │ │ │ ├── config.yaml │ │ │ │ ├── exampleSite │ │ │ │ ├── config.toml │ │ │ │ ├── content │ │ │ │ │ ├── en │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── about │ │ │ │ │ │ │ └── index.md │ │ │ │ │ │ ├── contact.md │ │ │ │ │ │ └── post │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── chapter-1.md │ │ │ │ │ │ │ ├── chapter-2.md │ │ │ │ │ │ │ ├── chapter-3.md │ │ │ │ │ │ │ ├── chapter-4.md │ │ │ │ │ │ │ ├── chapter-5.md │ │ │ │ │ │ │ └── chapter-6.md │ │ │ │ │ └── fr │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── contact.md │ │ │ │ │ │ └── post │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── chapter-1.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── static │ │ │ │ │ └── images │ │ │ │ │ ├── Pope-Edouard-de-Beaumont-1844.jpg │ │ │ │ │ ├── Victor_Hugo-Hunchback.jpg │ │ │ │ │ ├── esmeralda.jpg │ │ │ │ │ └── notebook.jpg │ │ │ │ ├── go.mod │ │ │ │ ├── i18n │ │ │ │ ├── bg.toml │ │ │ │ ├── de.toml │ │ │ │ ├── en.toml │ │ │ │ ├── es.toml │ │ │ │ ├── fi.toml │ │ │ │ ├── fr.toml │ │ │ │ ├── hi.toml │ │ │ │ ├── hu.toml │ │ │ │ ├── it.toml │ │ │ │ ├── ja.toml │ │ │ │ ├── nl.toml │ │ │ │ ├── no.toml │ │ │ │ ├── pt.toml │ │ │ │ ├── ru.toml │ │ │ │ ├── sv.toml │ │ │ │ ├── tr.toml │ │ │ │ ├── uk.toml │ │ │ │ ├── zh-tw.toml │ │ │ │ └── zh.toml │ │ │ │ ├── images │ │ │ │ ├── screenshot.png │ │ │ │ └── tn.png │ │ │ │ ├── layouts │ │ │ │ ├── 404.html │ │ │ │ ├── _default │ │ │ │ │ ├── baseof.html │ │ │ │ │ ├── by.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── single.html │ │ │ │ │ ├── summary-with-image.html │ │ │ │ │ ├── summary.html │ │ │ │ │ ├── taxonomy.html │ │ │ │ │ └── terms.html │ │ │ │ ├── index.html │ │ │ │ ├── page │ │ │ │ │ └── single.html │ │ │ │ ├── partials │ │ │ │ │ ├── commento.html │ │ │ │ │ ├── func │ │ │ │ │ │ ├── GetFeaturedImage.html │ │ │ │ │ │ ├── GetLanguageDirection.html │ │ │ │ │ │ ├── socials │ │ │ │ │ │ │ ├── Get.html │ │ │ │ │ │ │ ├── GetBuiltInServicesDefaults.html │ │ │ │ │ │ │ ├── GetRegisteredServices.html │ │ │ │ │ │ │ ├── GetServiceData.html │ │ │ │ │ │ │ └── GetServiceIcon.html │ │ │ │ │ │ ├── style │ │ │ │ │ │ │ ├── GetMainCSS.html │ │ │ │ │ │ │ └── GetResource.html │ │ │ │ │ │ └── warn.html │ │ │ │ │ ├── head-additions.html │ │ │ │ │ ├── i18nlist.html │ │ │ │ │ ├── menu-contextual.html │ │ │ │ │ ├── new-window-icon.html │ │ │ │ │ ├── page-header.html │ │ │ │ │ ├── site-favicon.html │ │ │ │ │ ├── site-footer.html │ │ │ │ │ ├── site-header.html │ │ │ │ │ ├── site-navigation.html │ │ │ │ │ ├── site-scripts.html │ │ │ │ │ ├── site-style.html │ │ │ │ │ ├── social-follow.html │ │ │ │ │ ├── social-share.html │ │ │ │ │ ├── summary-with-image.html │ │ │ │ │ ├── summary.html │ │ │ │ │ ├── svg │ │ │ │ │ │ ├── new-window.svg │ │ │ │ │ │ └── tiktok.svg │ │ │ │ │ └── tags.html │ │ │ │ ├── post │ │ │ │ │ ├── list.html │ │ │ │ │ └── summary.html │ │ │ │ ├── robots.txt │ │ │ │ └── shortcodes │ │ │ │ │ └── form-contact.html │ │ │ │ ├── package.hugo.json │ │ │ │ ├── package.json │ │ │ │ ├── resources │ │ │ │ └── _gen │ │ │ │ │ └── assets │ │ │ │ │ └── css │ │ │ │ │ └── ananke │ │ │ │ │ └── css │ │ │ │ │ ├── main.css_5c99d70a7725bacd4c701e995b969fea.content │ │ │ │ │ ├── main.css_5c99d70a7725bacd4c701e995b969fea.json │ │ │ │ │ ├── main.css_bb5467e0521bbea6b1e66429f6ec028e.content │ │ │ │ │ └── main.css_bb5467e0521bbea6b1e66429f6ec028e.json │ │ │ │ ├── stackbit.yaml │ │ │ │ ├── static │ │ │ │ └── images │ │ │ │ │ └── gohugo-default-sample-hero-image.jpg │ │ │ │ └── theme.toml │ │ ├── ionic-angular │ │ │ ├── .browserslistrc │ │ │ ├── .editorconfig │ │ │ ├── .eslintrc.json │ │ │ ├── .gitignore │ │ │ ├── angular.json │ │ │ ├── e2e │ │ │ │ ├── protractor.conf.js │ │ │ │ ├── src │ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ │ └── app.po.ts │ │ │ │ └── tsconfig.json │ │ │ ├── ionic.config.json │ │ │ ├── karma.conf.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── app-routing.module.ts │ │ │ │ │ ├── app.component.html │ │ │ │ │ ├── app.component.scss │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ ├── app.component.ts │ │ │ │ │ ├── app.module.ts │ │ │ │ │ └── home │ │ │ │ │ │ ├── home-routing.module.ts │ │ │ │ │ │ ├── home.module.ts │ │ │ │ │ │ ├── home.page.html │ │ │ │ │ │ ├── home.page.scss │ │ │ │ │ │ ├── home.page.spec.ts │ │ │ │ │ │ └── home.page.ts │ │ │ │ ├── assets │ │ │ │ │ ├── icon │ │ │ │ │ │ └── favicon.png │ │ │ │ │ └── shapes.svg │ │ │ │ ├── environments │ │ │ │ │ ├── environment.prod.ts │ │ │ │ │ └── environment.ts │ │ │ │ ├── global.scss │ │ │ │ ├── index.html │ │ │ │ ├── main.ts │ │ │ │ ├── polyfills.ts │ │ │ │ ├── test.ts │ │ │ │ ├── theme │ │ │ │ │ └── variables.scss │ │ │ │ └── zone-flags.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.json │ │ │ └── tsconfig.spec.json │ │ ├── ionic-react │ │ │ ├── .gitignore │ │ │ ├── ionic.config.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── assets │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── shapes.svg │ │ │ │ ├── index.html │ │ │ │ └── manifest.json │ │ │ ├── src │ │ │ │ ├── App.test.tsx │ │ │ │ ├── App.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ExploreContainer.css │ │ │ │ │ └── ExploreContainer.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── pages │ │ │ │ │ ├── Home.css │ │ │ │ │ └── Home.tsx │ │ │ │ ├── react-app-env.d.ts │ │ │ │ ├── reportWebVitals.ts │ │ │ │ ├── service-worker.ts │ │ │ │ ├── serviceWorkerRegistration.ts │ │ │ │ ├── setupTests.ts │ │ │ │ └── theme │ │ │ │ │ └── variables.css │ │ │ └── tsconfig.json │ │ ├── ionic-vue │ │ │ ├── .browserslistrc │ │ │ ├── .eslintrc.js │ │ │ ├── .gitignore │ │ │ ├── babel.config.js │ │ │ ├── cypress.json │ │ │ ├── ionic.config.json │ │ │ ├── jest.config.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── assets │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── shapes.svg │ │ │ │ └── index.html │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── main.ts │ │ │ │ ├── router │ │ │ │ │ └── index.ts │ │ │ │ ├── shims-vue.d.ts │ │ │ │ ├── theme │ │ │ │ │ └── variables.css │ │ │ │ └── views │ │ │ │ │ └── HomePage.vue │ │ │ ├── tests │ │ │ │ ├── e2e │ │ │ │ │ ├── .eslintrc.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── specs │ │ │ │ │ │ └── test.js │ │ │ │ │ └── support │ │ │ │ │ │ ├── commands.js │ │ │ │ │ │ └── index.js │ │ │ │ └── unit │ │ │ │ │ └── example.spec.ts │ │ │ └── tsconfig.json │ │ ├── jekyll │ │ │ ├── .gitignore │ │ │ ├── 404.html │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── _config.yml │ │ │ ├── _posts │ │ │ │ └── 2022-05-06-welcome-to-jekyll.markdown │ │ │ ├── about.markdown │ │ │ └── index.markdown │ │ ├── lektor │ │ │ ├── assets │ │ │ │ └── static │ │ │ │ │ └── style.css │ │ │ ├── content │ │ │ │ ├── about │ │ │ │ │ └── contents.lr │ │ │ │ ├── blog │ │ │ │ │ ├── contents.lr │ │ │ │ │ └── first-post │ │ │ │ │ │ └── contents.lr │ │ │ │ ├── contents.lr │ │ │ │ └── projects │ │ │ │ │ └── contents.lr │ │ │ ├── lektor.lektorproject │ │ │ ├── models │ │ │ │ ├── blog-post.ini │ │ │ │ ├── blog.ini │ │ │ │ └── page.ini │ │ │ └── templates │ │ │ │ ├── blog-post.html │ │ │ │ ├── blog.html │ │ │ │ ├── layout.html │ │ │ │ ├── macros │ │ │ │ ├── blog.html │ │ │ │ └── pagination.html │ │ │ │ └── page.html │ │ ├── lit │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assets │ │ │ │ └── open-wc-logo.svg │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── LitApp.ts │ │ │ │ └── lit-app.ts │ │ │ ├── tsconfig.json │ │ │ └── web-dev-server.config.mjs │ │ ├── mdbook │ │ │ ├── .gitignore │ │ │ ├── book.toml │ │ │ ├── src │ │ │ │ ├── SUMMARY.md │ │ │ │ └── chapter_1.md │ │ │ └── theme │ │ │ │ ├── book.js │ │ │ │ ├── css │ │ │ │ ├── chrome.css │ │ │ │ ├── general.css │ │ │ │ ├── print.css │ │ │ │ └── variables.css │ │ │ │ ├── favicon.png │ │ │ │ ├── favicon.svg │ │ │ │ ├── highlight.css │ │ │ │ ├── highlight.js │ │ │ │ └── index.hbs │ │ ├── metalsmith │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── layouts │ │ │ │ ├── layout.hbs │ │ │ │ └── post.hbs │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── about.md │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── index.md │ │ │ │ └── posts │ │ │ │ ├── first-post.md │ │ │ │ ├── fourth-post.md │ │ │ │ ├── second-post.md │ │ │ │ └── third-post.md │ │ ├── middleman │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── config.rb │ │ │ └── source │ │ │ │ ├── images │ │ │ │ └── .keep │ │ │ │ ├── index.html.erb │ │ │ │ ├── javascripts │ │ │ │ └── site.js │ │ │ │ ├── layouts │ │ │ │ └── layout.erb │ │ │ │ └── stylesheets │ │ │ │ └── site.css.scss │ │ ├── mkdocs │ │ │ ├── docs │ │ │ │ └── index.md │ │ │ └── mkdocs.yml │ │ ├── nuxtjs │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── components │ │ │ │ ├── NuxtLogo.vue │ │ │ │ └── Tutorial.vue │ │ │ ├── nuxt.config.js │ │ │ ├── package.json │ │ │ ├── pages │ │ │ │ └── index.vue │ │ │ ├── static │ │ │ │ └── favicon.ico │ │ │ ├── store │ │ │ │ └── README.md │ │ │ └── tsconfig.json │ │ ├── pelican │ │ │ ├── Makefile │ │ │ ├── content │ │ │ │ └── my-post.md │ │ │ ├── pelicanconf.py │ │ │ ├── publishconf.py │ │ │ └── tasks.py │ │ ├── polymer │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── demo │ │ │ │ ├── demo-element.js │ │ │ │ └── index.html │ │ │ ├── icon-toggle-finished │ │ │ │ ├── demo │ │ │ │ │ ├── demo-element.js │ │ │ │ │ └── index.html │ │ │ │ ├── icon-toggle.js │ │ │ │ ├── package.json │ │ │ │ └── polymer.json │ │ │ ├── icon-toggle.js │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ └── polymer.json │ │ ├── preact │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── icons │ │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ │ └── mstile-150x150.png │ │ │ │ ├── components │ │ │ │ │ ├── app.js │ │ │ │ │ └── header │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.css │ │ │ │ ├── index.js │ │ │ │ ├── manifest.json │ │ │ │ ├── routes │ │ │ │ │ ├── home │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.css │ │ │ │ │ └── profile │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── style.css │ │ │ │ ├── style │ │ │ │ │ └── index.css │ │ │ │ ├── sw.js │ │ │ │ └── template.html │ │ │ └── tests │ │ │ │ ├── __mocks__ │ │ │ │ ├── browserMocks.js │ │ │ │ ├── fileMocks.js │ │ │ │ └── setupTests.js │ │ │ │ └── header.test.js │ │ ├── react-static │ │ │ ├── .babelrc │ │ │ ├── .eslintrc │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── robots.txt │ │ │ ├── src │ │ │ │ ├── App.js │ │ │ │ ├── app.css │ │ │ │ ├── components │ │ │ │ │ └── Router.js │ │ │ │ ├── containers │ │ │ │ │ ├── Dynamic.js │ │ │ │ │ └── Post.js │ │ │ │ ├── index.js │ │ │ │ └── pages │ │ │ │ │ ├── 404.js │ │ │ │ │ ├── about.js │ │ │ │ │ ├── blog.js │ │ │ │ │ └── index.js │ │ │ ├── static.config.js │ │ │ └── yarn.lock │ │ ├── react │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ ├── logo192.png │ │ │ │ ├── logo512.png │ │ │ │ ├── manifest.json │ │ │ │ └── robots.txt │ │ │ └── src │ │ │ │ ├── App.css │ │ │ │ ├── App.js │ │ │ │ ├── App.test.js │ │ │ │ ├── index.css │ │ │ │ ├── index.js │ │ │ │ ├── logo.svg │ │ │ │ ├── reportWebVitals.js │ │ │ │ └── setupTests.js │ │ ├── riot │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── src │ │ │ │ ├── components │ │ │ │ │ ├── global │ │ │ │ │ │ ├── my-component │ │ │ │ │ │ │ ├── my-component.riot │ │ │ │ │ │ │ └── my-component.spec.js │ │ │ │ │ │ └── sidebar │ │ │ │ │ │ │ ├── sidebar.riot │ │ │ │ │ │ │ └── sidebar.spec.js │ │ │ │ │ └── includes │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── user.riot │ │ │ │ │ │ └── user.spec.js │ │ │ │ ├── index.html │ │ │ │ ├── index.js │ │ │ │ ├── register-global-components.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ ├── sapper │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── rollup.config.js │ │ │ ├── scripts │ │ │ │ └── setupTypeScript.js │ │ │ ├── src │ │ │ │ ├── ambient.d.ts │ │ │ │ ├── client.js │ │ │ │ ├── components │ │ │ │ │ └── Nav.svelte │ │ │ │ ├── routes │ │ │ │ │ ├── _error.svelte │ │ │ │ │ ├── _layout.svelte │ │ │ │ │ ├── about.svelte │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── [slug].json.js │ │ │ │ │ │ ├── [slug].svelte │ │ │ │ │ │ ├── _posts.js │ │ │ │ │ │ ├── index.json.js │ │ │ │ │ │ └── index.svelte │ │ │ │ │ └── index.svelte │ │ │ │ ├── server.js │ │ │ │ ├── service-worker.js │ │ │ │ └── template.html │ │ │ └── static │ │ │ │ ├── favicon.png │ │ │ │ ├── global.css │ │ │ │ ├── logo-192.png │ │ │ │ ├── logo-512.png │ │ │ │ └── manifest.json │ │ ├── slate │ │ │ ├── .dockerignore │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug.md │ │ │ │ │ └── config.yml │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ ├── dependabot.yml │ │ │ │ └── workflows │ │ │ │ │ ├── build.yml │ │ │ │ │ ├── deploy.yml │ │ │ │ │ ├── dev_deploy.yml │ │ │ │ │ └── publish.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── Dockerfile │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── Vagrantfile │ │ │ ├── config.rb │ │ │ ├── deploy.sh │ │ │ ├── font-selection.json │ │ │ ├── lib │ │ │ │ ├── monokai_sublime_slate.rb │ │ │ │ ├── multilang.rb │ │ │ │ ├── nesting_unique_head.rb │ │ │ │ ├── toc_data.rb │ │ │ │ └── unique_head.rb │ │ │ ├── slate.sh │ │ │ └── source │ │ │ │ ├── fonts │ │ │ │ ├── slate.eot │ │ │ │ ├── slate.svg │ │ │ │ ├── slate.ttf │ │ │ │ ├── slate.woff │ │ │ │ └── slate.woff2 │ │ │ │ ├── images │ │ │ │ ├── logo.png │ │ │ │ └── navbar.png │ │ │ │ ├── includes │ │ │ │ └── _errors.md │ │ │ │ ├── index.html.md │ │ │ │ ├── javascripts │ │ │ │ ├── all.js │ │ │ │ ├── all_nosearch.js │ │ │ │ ├── app │ │ │ │ │ ├── _copy.js │ │ │ │ │ ├── _lang.js │ │ │ │ │ ├── _search.js │ │ │ │ │ └── _toc.js │ │ │ │ └── lib │ │ │ │ │ ├── _energize.js │ │ │ │ │ ├── _imagesloaded.min.js │ │ │ │ │ ├── _jquery.highlight.js │ │ │ │ │ ├── _jquery.js │ │ │ │ │ └── _lunr.js │ │ │ │ ├── layouts │ │ │ │ └── layout.erb │ │ │ │ └── stylesheets │ │ │ │ ├── _icon-font.scss │ │ │ │ ├── _normalize.scss │ │ │ │ ├── _rtl.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── print.css.scss │ │ │ │ └── screen.css.scss │ │ ├── solid │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── pnpm-lock.yaml │ │ │ ├── src │ │ │ │ ├── App.module.css │ │ │ │ ├── App.tsx │ │ │ │ ├── assets │ │ │ │ │ └── favicon.ico │ │ │ │ ├── index.css │ │ │ │ ├── index.tsx │ │ │ │ └── logo.svg │ │ │ ├── tsconfig.json │ │ │ └── vite.config.ts │ │ ├── static │ │ │ └── index.html │ │ ├── stencil │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .prettierrc.json │ │ │ ├── LICENSE │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ └── icon │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ └── icon.png │ │ │ │ ├── components.d.ts │ │ │ │ ├── components │ │ │ │ │ ├── app-home │ │ │ │ │ │ ├── app-home.css │ │ │ │ │ │ ├── app-home.e2e.ts │ │ │ │ │ │ └── app-home.tsx │ │ │ │ │ ├── app-profile │ │ │ │ │ │ ├── app-profile.css │ │ │ │ │ │ ├── app-profile.e2e.ts │ │ │ │ │ │ ├── app-profile.spec.ts │ │ │ │ │ │ └── app-profile.tsx │ │ │ │ │ └── app-root │ │ │ │ │ │ ├── app-root.css │ │ │ │ │ │ ├── app-root.e2e.ts │ │ │ │ │ │ └── app-root.tsx │ │ │ │ ├── global │ │ │ │ │ ├── app.css │ │ │ │ │ └── app.ts │ │ │ │ ├── index.html │ │ │ │ ├── index.ts │ │ │ │ └── manifest.json │ │ │ ├── stencil.config.ts │ │ │ └── tsconfig.json │ │ ├── svelte-kit │ │ │ ├── .gitignore │ │ │ ├── .npmrc │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── jsconfig.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── app.css │ │ │ │ ├── app.d.ts │ │ │ │ ├── app.html │ │ │ │ ├── hooks.js │ │ │ │ ├── lib │ │ │ │ │ ├── Counter.svelte │ │ │ │ │ ├── form.js │ │ │ │ │ └── header │ │ │ │ │ │ ├── Header.svelte │ │ │ │ │ │ └── svelte-logo.svg │ │ │ │ └── routes │ │ │ │ │ ├── __layout.svelte │ │ │ │ │ ├── about.svelte │ │ │ │ │ ├── index.svelte │ │ │ │ │ └── todos │ │ │ │ │ ├── _api.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.svelte │ │ │ ├── static │ │ │ │ ├── favicon.png │ │ │ │ ├── robots.txt │ │ │ │ ├── svelte-welcome.png │ │ │ │ └── svelte-welcome.webp │ │ │ └── svelte.config.js │ │ ├── svelte │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ ├── favicon.png │ │ │ │ ├── global.css │ │ │ │ └── index.html │ │ │ ├── rollup.config.js │ │ │ ├── scripts │ │ │ │ └── setupTypeScript.js │ │ │ └── src │ │ │ │ ├── App.svelte │ │ │ │ └── main.js │ │ ├── vite-lit │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ └── lit.svg │ │ │ │ ├── index.css │ │ │ │ └── my-element.js │ │ │ └── vite.config.js │ │ ├── vite-preact │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── app.css │ │ │ │ ├── app.jsx │ │ │ │ ├── assets │ │ │ │ │ └── preact.svg │ │ │ │ ├── index.css │ │ │ │ └── main.jsx │ │ │ └── vite.config.js │ │ ├── vite-react │ │ │ ├── .gitignore │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.css │ │ │ │ ├── App.tsx │ │ │ │ ├── assets │ │ │ │ │ └── react.svg │ │ │ │ ├── index.css │ │ │ │ ├── main.tsx │ │ │ │ └── vite-env.d.ts │ │ │ ├── tsconfig.json │ │ │ ├── tsconfig.node.json │ │ │ └── vite.config.ts │ │ ├── vite-svelte │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── jsconfig.json │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.svelte │ │ │ │ ├── app.css │ │ │ │ ├── assets │ │ │ │ │ └── svelte.svg │ │ │ │ ├── lib │ │ │ │ │ └── Counter.svelte │ │ │ │ ├── main.js │ │ │ │ └── vite-env.d.ts │ │ │ └── vite.config.js │ │ ├── vite-vanilla │ │ │ ├── .gitignore │ │ │ ├── counter.js │ │ │ ├── index.html │ │ │ ├── javascript.svg │ │ │ ├── main.js │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ └── style.css │ │ ├── vite-vue │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── vite.svg │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ │ └── vue.svg │ │ │ │ ├── components │ │ │ │ │ └── HelloWorld.vue │ │ │ │ ├── main.js │ │ │ │ └── style.css │ │ │ └── vite.config.js │ │ ├── vitepress │ │ │ ├── docs │ │ │ │ └── index.md │ │ │ └── package.json │ │ ├── vue │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ │ └── extensions.json │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── package.json │ │ │ ├── public │ │ │ │ └── favicon.ico │ │ │ ├── src │ │ │ │ ├── App.vue │ │ │ │ ├── assets │ │ │ │ │ ├── base.css │ │ │ │ │ └── logo.svg │ │ │ │ ├── components │ │ │ │ │ ├── HelloWorld.vue │ │ │ │ │ ├── TheWelcome.vue │ │ │ │ │ ├── WelcomeItem.vue │ │ │ │ │ └── icons │ │ │ │ │ │ ├── IconCommunity.vue │ │ │ │ │ │ ├── IconDocumentation.vue │ │ │ │ │ │ ├── IconEcosystem.vue │ │ │ │ │ │ ├── IconSupport.vue │ │ │ │ │ │ └── IconTooling.vue │ │ │ │ └── main.js │ │ │ └── vite.config.js │ │ ├── vuepress │ │ │ └── docs │ │ │ │ ├── .npmignore │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ ├── .vuepress │ │ │ │ ├── components │ │ │ │ │ ├── Foo │ │ │ │ │ │ └── Bar.vue │ │ │ │ │ ├── OtherComponent.vue │ │ │ │ │ └── demo-component.vue │ │ │ │ ├── config.js │ │ │ │ ├── enhanceApp.js │ │ │ │ └── styles │ │ │ │ │ ├── index.styl │ │ │ │ │ └── palette.styl │ │ │ │ ├── config │ │ │ │ └── README.md │ │ │ │ ├── guide │ │ │ │ ├── README.md │ │ │ │ └── using-vue.md │ │ │ │ └── index.md │ │ ├── wintersmith │ │ │ ├── config.json │ │ │ ├── contents │ │ │ │ ├── about.md │ │ │ │ ├── archive.json │ │ │ │ ├── articles │ │ │ │ │ ├── another-test │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── bamboo-cutter │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── taketori_monogatari.jpg │ │ │ │ │ ├── hello-world │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── markdown-syntax │ │ │ │ │ │ └── index.md │ │ │ │ │ └── red-herring │ │ │ │ │ │ ├── banana.png │ │ │ │ │ │ └── index.md │ │ │ │ ├── authors │ │ │ │ │ ├── baker.json │ │ │ │ │ └── the-wintersmith.json │ │ │ │ ├── css │ │ │ │ │ └── main.css │ │ │ │ └── feed.json │ │ │ ├── package.json │ │ │ ├── plugins │ │ │ │ └── paginator.coffee │ │ │ ├── readme.md │ │ │ └── templates │ │ │ │ ├── archive.pug │ │ │ │ ├── article.pug │ │ │ │ ├── author.pug │ │ │ │ ├── feed.pug │ │ │ │ ├── index.pug │ │ │ │ └── layout.pug │ │ └── zola │ │ │ ├── config.toml │ │ │ └── content │ │ │ └── blog │ │ │ └── _index.md │ ├── db │ │ └── static-mssql │ │ │ ├── .gitignore │ │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── src │ │ │ └── index.html │ │ │ └── swa-db-connections │ │ │ └── staticwebapp.database.config.json │ └── ssr │ │ ├── angular-universal │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── README.md │ │ ├── angular.json │ │ ├── package.json │ │ ├── server.ts │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ └── app.server.module.ts │ │ │ ├── assets │ │ │ │ └── .gitkeep │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.server.ts │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ └── styles.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.server.json │ │ ├── blazor-server │ │ ├── App.razor │ │ ├── Data │ │ │ ├── WeatherForecast.cs │ │ │ └── WeatherForecastService.cs │ │ ├── Pages │ │ │ ├── Counter.razor │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── FetchData.razor │ │ │ ├── Index.razor │ │ │ ├── _Host.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Shared │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ ├── NavMenu.razor.css │ │ │ └── SurveyPrompt.razor │ │ ├── _Imports.razor │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── blazor-server.csproj │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── bootstrap │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── open-iconic │ │ │ │ ├── FONT-LICENSE │ │ │ │ ├── ICON-LICENSE │ │ │ │ ├── README.md │ │ │ │ └── font │ │ │ │ │ ├── css │ │ │ │ │ └── open-iconic-bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ ├── open-iconic.eot │ │ │ │ │ ├── open-iconic.otf │ │ │ │ │ ├── open-iconic.svg │ │ │ │ │ ├── open-iconic.ttf │ │ │ │ │ └── open-iconic.woff │ │ │ └── site.css │ │ │ └── favicon.ico │ │ ├── marko │ │ ├── .gitignore │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── components │ │ │ ├── app-layout.marko │ │ │ └── mouse-mask.marko │ │ │ └── pages │ │ │ └── index │ │ │ ├── index.marko │ │ │ └── logo.svg │ │ ├── meteor │ │ ├── .gitignore │ │ ├── .meteor │ │ │ ├── .finished-upgraders │ │ │ ├── .gitignore │ │ │ ├── .id │ │ │ ├── packages │ │ │ ├── platforms │ │ │ ├── release │ │ │ └── versions │ │ ├── client │ │ │ ├── main.css │ │ │ ├── main.html │ │ │ └── main.js │ │ ├── package.json │ │ ├── server │ │ │ └── main.js │ │ └── tests │ │ │ └── main.js │ │ ├── nextjs │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── next.config.js │ │ ├── package.json │ │ ├── pages │ │ │ ├── _app.js │ │ │ ├── api │ │ │ │ └── hello.js │ │ │ └── index.js │ │ ├── public │ │ │ ├── favicon.ico │ │ │ └── vercel.svg │ │ └── styles │ │ │ ├── Home.module.css │ │ │ └── globals.css │ │ └── remix │ │ ├── .dockerignore │ │ ├── .env.example │ │ ├── .eslintrc.js │ │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug_report.yml │ │ │ └── config.yml │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ └── deploy.yml │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app │ │ ├── db.server.ts │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── models │ │ │ ├── note.server.ts │ │ │ └── user.server.ts │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── healthcheck.tsx │ │ │ ├── index.tsx │ │ │ ├── join.tsx │ │ │ ├── login.tsx │ │ │ ├── logout.tsx │ │ │ ├── notes.tsx │ │ │ └── notes │ │ │ │ ├── $noteId.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── new.tsx │ │ ├── session.server.ts │ │ ├── utils.test.ts │ │ └── utils.ts │ │ ├── cypress.json │ │ ├── cypress │ │ ├── .eslintrc.js │ │ ├── e2e │ │ │ └── smoke.ts │ │ ├── fixtures │ │ │ └── example.json │ │ ├── plugins │ │ │ └── index.ts │ │ ├── support │ │ │ ├── commands.ts │ │ │ ├── create-user.ts │ │ │ ├── delete-user.ts │ │ │ └── index.ts │ │ └── tsconfig.json │ │ ├── docker-compose.yml │ │ ├── fly.toml │ │ ├── mocks │ │ ├── README.md │ │ ├── index.js │ │ └── start.ts │ │ ├── package.json │ │ ├── prisma │ │ ├── migrations │ │ │ ├── 20220224172159_init │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ ├── schema.prisma │ │ └── seed.ts │ │ ├── public │ │ └── favicon.ico │ │ ├── remix.config.js │ │ ├── remix.env.d.ts │ │ ├── remix.init │ │ ├── index.js │ │ └── package.json │ │ ├── server.ts │ │ ├── tailwind.config.js │ │ ├── test │ │ └── setup-test-env.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts └── vitest.config.e2e.ts ├── package.json ├── readme.md ├── schema ├── staticwebapp.config.json └── swa-cli.config.schema.json ├── scripts ├── copy-assets.js └── publish_docker.sh ├── src ├── cli │ ├── bin.js │ ├── commands │ │ ├── build │ │ │ ├── build.spec.ts │ │ │ ├── build.ts │ │ │ └── register.ts │ │ ├── db │ │ │ └── init │ │ │ │ ├── init.spec.ts │ │ │ │ ├── init.ts │ │ │ │ └── register.ts │ │ ├── deploy │ │ │ ├── deploy.spec.ts │ │ │ ├── deploy.ts │ │ │ └── register.ts │ │ ├── docs.ts │ │ ├── init │ │ │ ├── init.spec.ts │ │ │ ├── init.ts │ │ │ └── register.ts │ │ ├── login │ │ │ ├── login.ts │ │ │ └── register.ts │ │ └── start │ │ │ ├── register.ts │ │ │ └── start.ts │ ├── index.spec.ts │ └── index.ts ├── config.ts ├── core │ ├── account.ts │ ├── constants.ts │ ├── dataApiBuilder │ │ ├── dab.spec.ts │ │ ├── dab.ts │ │ └── index.ts │ ├── deploy-client.spec.ts │ ├── deploy-client.ts │ ├── download-binary-helper.ts │ ├── env.spec.ts │ ├── env.ts │ ├── frameworks │ │ ├── detect.spec.ts │ │ ├── detect.ts │ │ ├── frameworks.ts │ │ └── types.d.ts │ ├── func-core-tools.spec.ts │ ├── func-core-tools.ts │ ├── functions-versions.ts │ ├── git.spec.ts │ ├── git.ts │ ├── prompts.ts │ ├── ssl.ts │ ├── swa-cli-persistence-plugin │ │ ├── impl │ │ │ ├── azure-environment.ts │ │ │ ├── credentials-store.ts │ │ │ ├── crypto.ts │ │ │ ├── machine-identifier.ts │ │ │ └── secret-storage.ts │ │ ├── index.ts │ │ └── persistence-cache-plugin.ts │ └── utils │ │ ├── auth.ts │ │ ├── cli-config.spec.ts │ │ ├── cli-config.ts │ │ ├── cli.spec.ts │ │ ├── cli.ts │ │ ├── command.ts │ │ ├── cookie.spec.ts │ │ ├── cookie.ts │ │ ├── docker.ts │ │ ├── fetch-proxy.ts │ │ ├── file.spec.ts │ │ ├── file.ts │ │ ├── glob.spec.ts │ │ ├── glob.ts │ │ ├── json.spec.ts │ │ ├── json.ts │ │ ├── logger.ts │ │ ├── net.spec.ts │ │ ├── net.ts │ │ ├── openidHelper.ts │ │ ├── options.spec.ts │ │ ├── options.ts │ │ ├── platform.spec.ts │ │ ├── platform.ts │ │ ├── strings.spec.ts │ │ ├── strings.ts │ │ ├── update-notifier.ts │ │ ├── user-config.spec.ts │ │ ├── user-config.ts │ │ ├── workflow-config.spec.ts │ │ └── workflow-config.ts ├── msha │ ├── auth │ │ ├── index.ts │ │ └── routes │ │ │ ├── auth-login-provider-callback.ts │ │ │ ├── auth-login-provider-custom.ts │ │ │ ├── auth-login-provider.ts │ │ │ ├── auth-logout-https.spec.ts │ │ │ ├── auth-logout.spec.ts │ │ │ ├── auth-logout.ts │ │ │ └── auth-me.ts │ ├── handlers │ │ ├── auth.handler.ts │ │ ├── dab.handler.spec.ts │ │ ├── dab.handler.ts │ │ ├── error-page.handler.ts │ │ └── function.handler.ts │ ├── middlewares │ │ ├── request.middleware.ts │ │ └── response.middleware.ts │ ├── routes-engine │ │ ├── route-processor.spec.ts │ │ ├── route-processor.ts │ │ └── rules │ │ │ ├── headers.spec.ts │ │ │ ├── headers.ts │ │ │ ├── mime-types.spec.ts │ │ │ ├── mime-types.ts │ │ │ ├── navigation-fallback.spec.ts │ │ │ ├── navigation-fallback.ts │ │ │ ├── response-overrides.spec.ts │ │ │ ├── response-overrides.ts │ │ │ ├── routes.spec.ts │ │ │ └── routes.ts │ └── server.ts ├── public │ ├── 401.html │ ├── 403.html │ ├── 404.html │ └── auth.html ├── swa.d.ts └── test.helpers.ts ├── swa-db-connections └── staticwebapp.database.schema.gql ├── tests └── _mocks │ ├── fetch.js │ └── fs.js ├── tsconfig.json ├── vitest.config.unit.ts └── vitest.workspace.ts /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/azuresdkdrop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/azuresdkdrop.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/detection-e2e-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/detection-e2e-tests.yml -------------------------------------------------------------------------------- /.github/workflows/dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/dockerhub.yml -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations": [] 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress.json -------------------------------------------------------------------------------- /cypress/fixtures/blazor-starter/Client/wwwroot/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "API_Prefix": "http://localhost:7071" 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/blazor-starter/custom-401.html: -------------------------------------------------------------------------------- 1 |

custom 401

2 | -------------------------------------------------------------------------------- /cypress/fixtures/blazor-starter/custom-403.html: -------------------------------------------------------------------------------- 1 |

custom 403

2 | -------------------------------------------------------------------------------- /cypress/fixtures/blazor-starter/custom-404.html: -------------------------------------------------------------------------------- 1 |

custom 404

2 | -------------------------------------------------------------------------------- /cypress/fixtures/static/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /cypress/fixtures/static/api/echo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/api/echo/index.js -------------------------------------------------------------------------------- /cypress/fixtures/static/api/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/api/host.json -------------------------------------------------------------------------------- /cypress/fixtures/static/api/info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/api/info/index.js -------------------------------------------------------------------------------- /cypress/fixtures/static/api/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /cypress/fixtures/static/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/api/package.json -------------------------------------------------------------------------------- /cypress/fixtures/static/api/status/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/api/status/index.js -------------------------------------------------------------------------------- /cypress/fixtures/static/app/custom-401.html: -------------------------------------------------------------------------------- 1 |

custom 401

2 | -------------------------------------------------------------------------------- /cypress/fixtures/static/app/custom-403.html: -------------------------------------------------------------------------------- 1 |

custom 403

2 | -------------------------------------------------------------------------------- /cypress/fixtures/static/app/custom-404.html: -------------------------------------------------------------------------------- 1 |

custom 404

2 | -------------------------------------------------------------------------------- /cypress/fixtures/static/app/foo.bar: -------------------------------------------------------------------------------- 1 | application/octet-stream 2 | -------------------------------------------------------------------------------- /cypress/fixtures/static/app/foo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cypress/fixtures/static/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/app/index.html -------------------------------------------------------------------------------- /cypress/fixtures/static/app/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/app/index2.html -------------------------------------------------------------------------------- /cypress/fixtures/static/app/test.swaconfig: -------------------------------------------------------------------------------- 1 | /test.swaconfig -------------------------------------------------------------------------------- /cypress/fixtures/static/app/with space.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/app/with space.html -------------------------------------------------------------------------------- /cypress/fixtures/static/swa-cli.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/fixtures/static/swa-cli.config.json -------------------------------------------------------------------------------- /cypress/integration/authentication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/authentication.js -------------------------------------------------------------------------------- /cypress/integration/authorization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/authorization.js -------------------------------------------------------------------------------- /cypress/integration/error-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/error-pages.js -------------------------------------------------------------------------------- /cypress/integration/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/functions.js -------------------------------------------------------------------------------- /cypress/integration/mime-type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/mime-type.js -------------------------------------------------------------------------------- /cypress/integration/route-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/integration/route-rules.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/cypress/support/index.js -------------------------------------------------------------------------------- /docs/DEVELOPER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/DEVELOPER.md -------------------------------------------------------------------------------- /docs/swa-cli-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/swa-cli-architecture.png -------------------------------------------------------------------------------- /docs/swa-cli-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/swa-cli-logo.svg -------------------------------------------------------------------------------- /docs/swa-cli.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/swa-cli.config.json -------------------------------------------------------------------------------- /docs/www/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/.gitignore -------------------------------------------------------------------------------- /docs/www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/README.md -------------------------------------------------------------------------------- /docs/www/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/babel.config.js -------------------------------------------------------------------------------- /docs/www/docs/cli/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/_category_.json -------------------------------------------------------------------------------- /docs/www/docs/cli/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/docker.md -------------------------------------------------------------------------------- /docs/www/docs/cli/env-vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/env-vars.md -------------------------------------------------------------------------------- /docs/www/docs/cli/local-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/local-auth.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-build.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-config.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-deploy.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-init.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-login.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa-start.md -------------------------------------------------------------------------------- /docs/www/docs/cli/swa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/cli/swa.md -------------------------------------------------------------------------------- /docs/www/docs/contribute/1-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/contribute/1-intro.md -------------------------------------------------------------------------------- /docs/www/docs/contribute/2-developer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/contribute/2-developer.md -------------------------------------------------------------------------------- /docs/www/docs/contribute/3-contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/contribute/3-contributors.md -------------------------------------------------------------------------------- /docs/www/docs/contribute/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/contribute/_category_.json -------------------------------------------------------------------------------- /docs/www/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/intro.md -------------------------------------------------------------------------------- /docs/www/docs/use/1-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/1-install.md -------------------------------------------------------------------------------- /docs/www/docs/use/2-emulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/2-emulator.md -------------------------------------------------------------------------------- /docs/www/docs/use/3-api-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/3-api-server.md -------------------------------------------------------------------------------- /docs/www/docs/use/4-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/4-deploy.md -------------------------------------------------------------------------------- /docs/www/docs/use/5-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/5-config.md -------------------------------------------------------------------------------- /docs/www/docs/use/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docs/use/_category_.json -------------------------------------------------------------------------------- /docs/www/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/docusaurus.config.js -------------------------------------------------------------------------------- /docs/www/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/package-lock.json -------------------------------------------------------------------------------- /docs/www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/package.json -------------------------------------------------------------------------------- /docs/www/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/sidebars.js -------------------------------------------------------------------------------- /docs/www/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/src/css/custom.css -------------------------------------------------------------------------------- /docs/www/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/src/pages/index.js -------------------------------------------------------------------------------- /docs/www/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/www/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/www/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/www/static/img/install-cli.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/install-cli.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-configure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-configure.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-deploy-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-deploy-icon.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-deploy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-deploy.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-init-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-init-icon.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-init.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-init.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-install.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-login-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-login-icon.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-login.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-start-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-start-icon.svg -------------------------------------------------------------------------------- /docs/www/static/img/landing-start.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/landing-start.svg -------------------------------------------------------------------------------- /docs/www/static/img/read-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/read-docs.svg -------------------------------------------------------------------------------- /docs/www/static/img/swa-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/swa-404.png -------------------------------------------------------------------------------- /docs/www/static/img/swa-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/swa-arch.png -------------------------------------------------------------------------------- /docs/www/static/img/swa-cli-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/swa-cli-arch.png -------------------------------------------------------------------------------- /docs/www/static/img/swa-cli-local-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/swa-cli-local-auth.png -------------------------------------------------------------------------------- /docs/www/static/img/whats-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/docs/www/static/img/whats-new.svg -------------------------------------------------------------------------------- /e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/.gitignore -------------------------------------------------------------------------------- /e2e/__snapshots__/detect.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/__snapshots__/detect.spec.js.snap -------------------------------------------------------------------------------- /e2e/detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/detect.js -------------------------------------------------------------------------------- /e2e/detect.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/detect.spec.js -------------------------------------------------------------------------------- /e2e/fixtures/astro-node/astro preact/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/fixtures/astro-node/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/fixtures/astro-node/node/.gitignore -------------------------------------------------------------------------------- /e2e/fixtures/astro-node/node/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/fixtures/astro-node/node/host.json -------------------------------------------------------------------------------- /e2e/fixtures/astro-node/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/fixtures/astro-node/node/package.json -------------------------------------------------------------------------------- /e2e/fixtures/static-node-ts/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/fixtures/static-node-ts/README.md: -------------------------------------------------------------------------------- 1 | # Headline 2 | 3 | > An awesome project. 4 | -------------------------------------------------------------------------------- /e2e/fixtures/static-node-ts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/fixtures/static-node-ts/index.html -------------------------------------------------------------------------------- /e2e/samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-csx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-csx/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-csx/hello/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-csx/hello/readme.md -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-csx/hello/run.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-csx/hello/run.csx -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-csx/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-csx/host.json -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-isolated/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-isolated/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-isolated/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-isolated/Program.cs -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-isolated/hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-isolated/hello.cs -------------------------------------------------------------------------------- /e2e/samples/api/dotnet-isolated/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet-isolated/host.json -------------------------------------------------------------------------------- /e2e/samples/api/dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/dotnet/dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet/dotnet.csproj -------------------------------------------------------------------------------- /e2e/samples/api/dotnet/hello.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet/hello.cs -------------------------------------------------------------------------------- /e2e/samples/api/dotnet/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/dotnet/host.json -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/.funcignore -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/hello/function.json -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/hello/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/hello/index.ts -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/host.json -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/package.json -------------------------------------------------------------------------------- /e2e/samples/api/node-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node-ts/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/api/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/node/hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node/hello/function.json -------------------------------------------------------------------------------- /e2e/samples/api/node/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node/hello/index.js -------------------------------------------------------------------------------- /e2e/samples/api/node/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node/host.json -------------------------------------------------------------------------------- /e2e/samples/api/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/node/package.json -------------------------------------------------------------------------------- /e2e/samples/api/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/.gitignore -------------------------------------------------------------------------------- /e2e/samples/api/python/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/getting_started.md -------------------------------------------------------------------------------- /e2e/samples/api/python/hello/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/hello/__init__.py -------------------------------------------------------------------------------- /e2e/samples/api/python/hello/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/hello/function.json -------------------------------------------------------------------------------- /e2e/samples/api/python/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/host.json -------------------------------------------------------------------------------- /e2e/samples/api/python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/api/python/requirements.txt -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular-scully/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular-scully/README.md -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular-scully/angular.json -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular-scully/package.json -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/samples/app/angular-scully/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular-scully/src/main.ts -------------------------------------------------------------------------------- /e2e/samples/app/angular/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/.browserslistrc -------------------------------------------------------------------------------- /e2e/samples/app/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/angular/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/.vscode/launch.json -------------------------------------------------------------------------------- /e2e/samples/app/angular/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/.vscode/tasks.json -------------------------------------------------------------------------------- /e2e/samples/app/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/README.md -------------------------------------------------------------------------------- /e2e/samples/app/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/angular.json -------------------------------------------------------------------------------- /e2e/samples/app/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/package.json -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/src/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/src/index.html -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/src/main.ts -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/src/polyfills.ts -------------------------------------------------------------------------------- /e2e/samples/app/angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/src/styles.css -------------------------------------------------------------------------------- /e2e/samples/app/angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/tsconfig.app.json -------------------------------------------------------------------------------- /e2e/samples/app/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/angular/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-alpine/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-alpine/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-alpine/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-alpine/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-alpine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-alpine/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/astro.config.mjs -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-lit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-lit/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-multiple/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-multiple/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-multiple/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/src/components/A.astro: -------------------------------------------------------------------------------- 1 |
2 |

Hello Astro (A)

3 |
4 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-multiple/src/components/B.astro: -------------------------------------------------------------------------------- 1 |
2 |

Hello Astro (B)

3 |
4 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-preact/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-preact/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-preact/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-preact/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-preact/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-preact/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-react/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-react/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-react/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-react/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-react/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-solid/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-solid/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-solid/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-solid/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-solid/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-svelte/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-svelte/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-svelte/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-svelte/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-svelte/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/astro.config.mjs -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro-vue/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/astro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/astro/.npmrc: -------------------------------------------------------------------------------- 1 | # Expose Astro dependencies for `pnpm` users 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/astro/.stackblitzrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/.stackblitzrc -------------------------------------------------------------------------------- /e2e/samples/app/astro/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/.vscode/launch.json -------------------------------------------------------------------------------- /e2e/samples/app/astro/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/README.md -------------------------------------------------------------------------------- /e2e/samples/app/astro/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/astro.config.mjs -------------------------------------------------------------------------------- /e2e/samples/app/astro/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/package.json -------------------------------------------------------------------------------- /e2e/samples/app/astro/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/public/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/astro/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/public/logo.svg -------------------------------------------------------------------------------- /e2e/samples/app/astro/sandbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/sandbox.config.json -------------------------------------------------------------------------------- /e2e/samples/app/astro/src/content/Tour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/src/content/Tour.md -------------------------------------------------------------------------------- /e2e/samples/app/astro/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/src/pages/index.astro -------------------------------------------------------------------------------- /e2e/samples/app/astro/src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/src/styles/global.css -------------------------------------------------------------------------------- /e2e/samples/app/astro/src/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/src/styles/home.css -------------------------------------------------------------------------------- /e2e/samples/app/astro/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/astro/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/.eslintrc.json -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/.npmrc: -------------------------------------------------------------------------------- 1 | # for pnpm, use flat node_modules 2 | shamefully-hoist=true 3 | -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/README.md -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/babel.config.json -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/index.ejs -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/package.json -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/src/app.html -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/src/app.js: -------------------------------------------------------------------------------- 1 | export class App { 2 | message = "Hello World!"; 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/static/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/aurelia/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/aurelia/webpack.config.js -------------------------------------------------------------------------------- /e2e/samples/app/blazor-wasm/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/blazor-wasm/App.razor -------------------------------------------------------------------------------- /e2e/samples/app/blazor-wasm/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/blazor-wasm/Program.cs -------------------------------------------------------------------------------- /e2e/samples/app/blazor-wasm/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/blazor-wasm/_Imports.razor -------------------------------------------------------------------------------- /e2e/samples/app/brunch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/brunch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/README.md -------------------------------------------------------------------------------- /e2e/samples/app/brunch/app/initialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/app/initialize.js -------------------------------------------------------------------------------- /e2e/samples/app/brunch/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/app/styles.css -------------------------------------------------------------------------------- /e2e/samples/app/brunch/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/brunch-config.js -------------------------------------------------------------------------------- /e2e/samples/app/brunch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/brunch/package.json -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/README.md -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/package.json -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/www/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/www/css/style.css -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/www/index.html -------------------------------------------------------------------------------- /e2e/samples/app/capacitor/www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/capacitor/www/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/docsify/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/docsify/README.md: -------------------------------------------------------------------------------- 1 | # Headline 2 | 3 | > An awesome project. 4 | -------------------------------------------------------------------------------- /e2e/samples/app/docsify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docsify/index.html -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/README.md -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/babel.config.js -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/blog/authors.yml -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/docs/intro.md -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/package.json -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/docusaurus/sidebars.js -------------------------------------------------------------------------------- /e2e/samples/app/docusaurus/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/eleventy/README.md: -------------------------------------------------------------------------------- 1 | # Page header 2 | -------------------------------------------------------------------------------- /e2e/samples/app/eleventy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/eleventy/index.html -------------------------------------------------------------------------------- /e2e/samples/app/eleventy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/eleventy/package.json -------------------------------------------------------------------------------- /e2e/samples/app/elm/elm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/elm/elm.json -------------------------------------------------------------------------------- /e2e/samples/app/elm/src/Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/elm/src/Main.elm -------------------------------------------------------------------------------- /e2e/samples/app/ember/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/ember/.ember-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.ember-cli -------------------------------------------------------------------------------- /e2e/samples/app/ember/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.eslintignore -------------------------------------------------------------------------------- /e2e/samples/app/ember/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.eslintrc.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/ember/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/.prettierignore -------------------------------------------------------------------------------- /e2e/samples/app/ember/.prettierrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | singleQuote: true, 5 | }; 6 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/.template-lintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | extends: 'recommended', 5 | }; 6 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": ["tmp", "dist"] 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/README.md -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/app/app.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/controllers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/helpers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/app/index.html -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/app/router.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/routes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/app/styles/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/config/environment.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/config/targets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/config/targets.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/ember-cli-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/ember-cli-build.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/package.json -------------------------------------------------------------------------------- /e2e/samples/app/ember/public/robots.txt: -------------------------------------------------------------------------------- 1 | # http://www.robotstxt.org 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/testem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/testem.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/tests/index.html -------------------------------------------------------------------------------- /e2e/samples/app/ember/tests/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/tests/test-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ember/tests/test-helper.js -------------------------------------------------------------------------------- /e2e/samples/app/ember/tests/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ember/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/flutter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/flutter/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/.metadata -------------------------------------------------------------------------------- /e2e/samples/app/flutter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/README.md -------------------------------------------------------------------------------- /e2e/samples/app/flutter/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/android/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/flutter/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/ios/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/flutter/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /e2e/samples/app/flutter/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /e2e/samples/app/flutter/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /e2e/samples/app/flutter/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/lib/main.dart -------------------------------------------------------------------------------- /e2e/samples/app/flutter/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/pubspec.lock -------------------------------------------------------------------------------- /e2e/samples/app/flutter/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/pubspec.yaml -------------------------------------------------------------------------------- /e2e/samples/app/flutter/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/web/favicon.png -------------------------------------------------------------------------------- /e2e/samples/app/flutter/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/web/index.html -------------------------------------------------------------------------------- /e2e/samples/app/flutter/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/web/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/flutter/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/flutter/windows/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/README.md -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/gridsome.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/gridsome.config.js -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/gridsome.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/gridsome.server.js -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/package.json -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/src/favicon.png -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/static/README.md -------------------------------------------------------------------------------- /e2e/samples/app/gridsome/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/gridsome/yarn.lock -------------------------------------------------------------------------------- /e2e/samples/app/hexo/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/.github/dependabot.yml -------------------------------------------------------------------------------- /e2e/samples/app/hexo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/hexo/_config.landscape.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/hexo/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/_config.yml -------------------------------------------------------------------------------- /e2e/samples/app/hexo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/package.json -------------------------------------------------------------------------------- /e2e/samples/app/hexo/scaffolds/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/scaffolds/draft.md -------------------------------------------------------------------------------- /e2e/samples/app/hexo/scaffolds/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/scaffolds/page.md -------------------------------------------------------------------------------- /e2e/samples/app/hexo/scaffolds/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/scaffolds/post.md -------------------------------------------------------------------------------- /e2e/samples/app/hexo/themes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/hexo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hexo/yarn.lock -------------------------------------------------------------------------------- /e2e/samples/app/hugo/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hugo/archetypes/default.md -------------------------------------------------------------------------------- /e2e/samples/app/hugo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/hugo/config.toml -------------------------------------------------------------------------------- /e2e/samples/app/hugo/themes/ananke/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/theNewDynamic/gohugo-theme-ananke 2 | 3 | go 1.14 4 | -------------------------------------------------------------------------------- /e2e/samples/app/hugo/themes/ananke/layouts/partials/head-additions.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/hugo/themes/ananke/layouts/partials/site-scripts.html: -------------------------------------------------------------------------------- 1 | {{/* For Users's overwrite */}} -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/angular.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/karma.conf.js -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/package.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/src/main.ts -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/src/test.ts -------------------------------------------------------------------------------- /e2e/samples/app/ionic-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-angular/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-react/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-react/package.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-react/src/App.tsx -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-react/src/index.tsx -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/src/pages/Home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /e2e/samples/app/ionic-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-react/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/.browserslistrc -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/.eslintrc.js -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/babel.config.js -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/cypress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/cypress.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/ionic.config.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/jest.config.js -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/package.json -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/public/index.html -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/src/App.vue -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/src/main.ts -------------------------------------------------------------------------------- /e2e/samples/app/ionic-vue/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/ionic-vue/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/404.html -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/Gemfile -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/Gemfile.lock -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/_config.yml -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/about.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/about.markdown -------------------------------------------------------------------------------- /e2e/samples/app/jekyll/index.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/jekyll/index.markdown -------------------------------------------------------------------------------- /e2e/samples/app/lektor/content/contents.lr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/content/contents.lr -------------------------------------------------------------------------------- /e2e/samples/app/lektor/lektor.lektorproject: -------------------------------------------------------------------------------- 1 | [project] 2 | name = lektor 3 | -------------------------------------------------------------------------------- /e2e/samples/app/lektor/models/blog-post.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/models/blog-post.ini -------------------------------------------------------------------------------- /e2e/samples/app/lektor/models/blog.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/models/blog.ini -------------------------------------------------------------------------------- /e2e/samples/app/lektor/models/page.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/models/page.ini -------------------------------------------------------------------------------- /e2e/samples/app/lektor/templates/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/templates/blog.html -------------------------------------------------------------------------------- /e2e/samples/app/lektor/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lektor/templates/page.html -------------------------------------------------------------------------------- /e2e/samples/app/lit/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/lit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/lit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/LICENSE -------------------------------------------------------------------------------- /e2e/samples/app/lit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/README.md -------------------------------------------------------------------------------- /e2e/samples/app/lit/assets/open-wc-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/assets/open-wc-logo.svg -------------------------------------------------------------------------------- /e2e/samples/app/lit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/index.html -------------------------------------------------------------------------------- /e2e/samples/app/lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/package.json -------------------------------------------------------------------------------- /e2e/samples/app/lit/src/LitApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/src/LitApp.ts -------------------------------------------------------------------------------- /e2e/samples/app/lit/src/lit-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/src/lit-app.ts -------------------------------------------------------------------------------- /e2e/samples/app/lit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/lit/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/book.toml -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/src/SUMMARY.md -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/src/chapter_1.md: -------------------------------------------------------------------------------- 1 | # Chapter 1 2 | -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/book.js -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/css/chrome.css -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/css/print.css -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/favicon.png -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/favicon.svg -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/highlight.css -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/highlight.js -------------------------------------------------------------------------------- /e2e/samples/app/mdbook/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mdbook/theme/index.hbs -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/README.md -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/index.js -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/layouts/post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/layouts/post.hbs -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/package.json -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/src/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/src/about.md -------------------------------------------------------------------------------- /e2e/samples/app/metalsmith/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/metalsmith/src/index.md -------------------------------------------------------------------------------- /e2e/samples/app/middleman/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/middleman/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/middleman/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/middleman/Gemfile -------------------------------------------------------------------------------- /e2e/samples/app/middleman/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/middleman/Gemfile.lock -------------------------------------------------------------------------------- /e2e/samples/app/middleman/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/middleman/config.rb -------------------------------------------------------------------------------- /e2e/samples/app/middleman/source/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/app/middleman/source/javascripts/site.js: -------------------------------------------------------------------------------- 1 | // This is where it all goes :) 2 | -------------------------------------------------------------------------------- /e2e/samples/app/mkdocs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/mkdocs/docs/index.md -------------------------------------------------------------------------------- /e2e/samples/app/mkdocs/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: My Docs 2 | -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/README.md -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/nuxt.config.js -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/package.json -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/pages/index.vue -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/static/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/store/README.md -------------------------------------------------------------------------------- /e2e/samples/app/nuxtjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/nuxtjs/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/pelican/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/pelican/Makefile -------------------------------------------------------------------------------- /e2e/samples/app/pelican/content/my-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/pelican/content/my-post.md -------------------------------------------------------------------------------- /e2e/samples/app/pelican/pelicanconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/pelican/pelicanconf.py -------------------------------------------------------------------------------- /e2e/samples/app/pelican/publishconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/pelican/publishconf.py -------------------------------------------------------------------------------- /e2e/samples/app/pelican/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/pelican/tasks.py -------------------------------------------------------------------------------- /e2e/samples/app/polymer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/polymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/README.md -------------------------------------------------------------------------------- /e2e/samples/app/polymer/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/demo/index.html -------------------------------------------------------------------------------- /e2e/samples/app/polymer/icon-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/icon-toggle.js -------------------------------------------------------------------------------- /e2e/samples/app/polymer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/index.html -------------------------------------------------------------------------------- /e2e/samples/app/polymer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/package.json -------------------------------------------------------------------------------- /e2e/samples/app/polymer/polymer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/polymer/polymer.json -------------------------------------------------------------------------------- /e2e/samples/app/preact/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | /*.log 4 | -------------------------------------------------------------------------------- /e2e/samples/app/preact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/README.md -------------------------------------------------------------------------------- /e2e/samples/app/preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/package.json -------------------------------------------------------------------------------- /e2e/samples/app/preact/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/src/index.js -------------------------------------------------------------------------------- /e2e/samples/app/preact/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/src/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/preact/src/style/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/src/style/index.css -------------------------------------------------------------------------------- /e2e/samples/app/preact/src/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/src/sw.js -------------------------------------------------------------------------------- /e2e/samples/app/preact/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/src/template.html -------------------------------------------------------------------------------- /e2e/samples/app/preact/tests/header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/preact/tests/header.test.js -------------------------------------------------------------------------------- /e2e/samples/app/react-static/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/.babelrc -------------------------------------------------------------------------------- /e2e/samples/app/react-static/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "react-app" 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/app/react-static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/README.md -------------------------------------------------------------------------------- /e2e/samples/app/react-static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/package.json -------------------------------------------------------------------------------- /e2e/samples/app/react-static/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | -------------------------------------------------------------------------------- /e2e/samples/app/react-static/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/src/App.js -------------------------------------------------------------------------------- /e2e/samples/app/react-static/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/src/app.css -------------------------------------------------------------------------------- /e2e/samples/app/react-static/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/src/index.js -------------------------------------------------------------------------------- /e2e/samples/app/react-static/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react-static/yarn.lock -------------------------------------------------------------------------------- /e2e/samples/app/react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/README.md -------------------------------------------------------------------------------- /e2e/samples/app/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/package.json -------------------------------------------------------------------------------- /e2e/samples/app/react/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/index.html -------------------------------------------------------------------------------- /e2e/samples/app/react/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/logo192.png -------------------------------------------------------------------------------- /e2e/samples/app/react/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/logo512.png -------------------------------------------------------------------------------- /e2e/samples/app/react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/public/robots.txt -------------------------------------------------------------------------------- /e2e/samples/app/react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/App.css -------------------------------------------------------------------------------- /e2e/samples/app/react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/App.js -------------------------------------------------------------------------------- /e2e/samples/app/react/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/App.test.js -------------------------------------------------------------------------------- /e2e/samples/app/react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/index.css -------------------------------------------------------------------------------- /e2e/samples/app/react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/index.js -------------------------------------------------------------------------------- /e2e/samples/app/react/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/logo.svg -------------------------------------------------------------------------------- /e2e/samples/app/react/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/react/src/setupTests.js -------------------------------------------------------------------------------- /e2e/samples/app/riot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/riot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/LICENSE -------------------------------------------------------------------------------- /e2e/samples/app/riot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/package.json -------------------------------------------------------------------------------- /e2e/samples/app/riot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/readme.md -------------------------------------------------------------------------------- /e2e/samples/app/riot/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/src/index.html -------------------------------------------------------------------------------- /e2e/samples/app/riot/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/src/index.js -------------------------------------------------------------------------------- /e2e/samples/app/riot/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/src/style.css -------------------------------------------------------------------------------- /e2e/samples/app/riot/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/riot/webpack.config.js -------------------------------------------------------------------------------- /e2e/samples/app/sapper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/sapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/README.md -------------------------------------------------------------------------------- /e2e/samples/app/sapper/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/package.json -------------------------------------------------------------------------------- /e2e/samples/app/sapper/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/rollup.config.js -------------------------------------------------------------------------------- /e2e/samples/app/sapper/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/src/ambient.d.ts -------------------------------------------------------------------------------- /e2e/samples/app/sapper/src/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/src/client.js -------------------------------------------------------------------------------- /e2e/samples/app/sapper/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/src/server.js -------------------------------------------------------------------------------- /e2e/samples/app/sapper/src/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/src/template.html -------------------------------------------------------------------------------- /e2e/samples/app/sapper/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/static/favicon.png -------------------------------------------------------------------------------- /e2e/samples/app/sapper/static/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/static/global.css -------------------------------------------------------------------------------- /e2e/samples/app/sapper/static/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/static/logo-192.png -------------------------------------------------------------------------------- /e2e/samples/app/sapper/static/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/static/logo-512.png -------------------------------------------------------------------------------- /e2e/samples/app/sapper/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/sapper/static/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/slate/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/.dockerignore -------------------------------------------------------------------------------- /e2e/samples/app/slate/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/slate/.gitattributes: -------------------------------------------------------------------------------- 1 | source/javascripts/lib/* linguist-vendored 2 | -------------------------------------------------------------------------------- /e2e/samples/app/slate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/slate/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/CHANGELOG.md -------------------------------------------------------------------------------- /e2e/samples/app/slate/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /e2e/samples/app/slate/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/Dockerfile -------------------------------------------------------------------------------- /e2e/samples/app/slate/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/Gemfile -------------------------------------------------------------------------------- /e2e/samples/app/slate/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/Gemfile.lock -------------------------------------------------------------------------------- /e2e/samples/app/slate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/LICENSE -------------------------------------------------------------------------------- /e2e/samples/app/slate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/README.md -------------------------------------------------------------------------------- /e2e/samples/app/slate/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/Vagrantfile -------------------------------------------------------------------------------- /e2e/samples/app/slate/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/config.rb -------------------------------------------------------------------------------- /e2e/samples/app/slate/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/deploy.sh -------------------------------------------------------------------------------- /e2e/samples/app/slate/font-selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/font-selection.json -------------------------------------------------------------------------------- /e2e/samples/app/slate/lib/multilang.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/lib/multilang.rb -------------------------------------------------------------------------------- /e2e/samples/app/slate/lib/toc_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/lib/toc_data.rb -------------------------------------------------------------------------------- /e2e/samples/app/slate/lib/unique_head.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/lib/unique_head.rb -------------------------------------------------------------------------------- /e2e/samples/app/slate/slate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/slate.sh -------------------------------------------------------------------------------- /e2e/samples/app/slate/source/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/slate/source/index.html.md -------------------------------------------------------------------------------- /e2e/samples/app/solid/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /e2e/samples/app/solid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/README.md -------------------------------------------------------------------------------- /e2e/samples/app/solid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/index.html -------------------------------------------------------------------------------- /e2e/samples/app/solid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/package.json -------------------------------------------------------------------------------- /e2e/samples/app/solid/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/pnpm-lock.yaml -------------------------------------------------------------------------------- /e2e/samples/app/solid/src/App.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/src/App.module.css -------------------------------------------------------------------------------- /e2e/samples/app/solid/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/src/App.tsx -------------------------------------------------------------------------------- /e2e/samples/app/solid/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/src/index.css -------------------------------------------------------------------------------- /e2e/samples/app/solid/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/src/index.tsx -------------------------------------------------------------------------------- /e2e/samples/app/solid/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/src/logo.svg -------------------------------------------------------------------------------- /e2e/samples/app/solid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/solid/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/solid/vite.config.ts -------------------------------------------------------------------------------- /e2e/samples/app/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/static/index.html -------------------------------------------------------------------------------- /e2e/samples/app/stencil/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/.editorconfig -------------------------------------------------------------------------------- /e2e/samples/app/stencil/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/stencil/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/.prettierrc.json -------------------------------------------------------------------------------- /e2e/samples/app/stencil/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/LICENSE -------------------------------------------------------------------------------- /e2e/samples/app/stencil/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/package.json -------------------------------------------------------------------------------- /e2e/samples/app/stencil/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/readme.md -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/components.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/components.d.ts -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/components/app-profile/app-profile.css: -------------------------------------------------------------------------------- 1 | .app-profile { 2 | padding: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/global/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/global/app.css -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/global/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/global/app.ts -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/index.html -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/index.ts -------------------------------------------------------------------------------- /e2e/samples/app/stencil/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/src/manifest.json -------------------------------------------------------------------------------- /e2e/samples/app/stencil/stencil.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/stencil.config.ts -------------------------------------------------------------------------------- /e2e/samples/app/stencil/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/stencil/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/CHANGELOG.md -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/README.md -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/jsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/package.json -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/src/app.css -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/src/app.d.ts -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/src/app.html -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/src/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/src/hooks.js -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/src/lib/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/src/lib/form.js -------------------------------------------------------------------------------- /e2e/samples/app/svelte-kit/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte-kit/svelte.config.js -------------------------------------------------------------------------------- /e2e/samples/app/svelte/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /e2e/samples/app/svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/README.md -------------------------------------------------------------------------------- /e2e/samples/app/svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/package.json -------------------------------------------------------------------------------- /e2e/samples/app/svelte/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/public/favicon.png -------------------------------------------------------------------------------- /e2e/samples/app/svelte/public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/public/global.css -------------------------------------------------------------------------------- /e2e/samples/app/svelte/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/public/index.html -------------------------------------------------------------------------------- /e2e/samples/app/svelte/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/rollup.config.js -------------------------------------------------------------------------------- /e2e/samples/app/svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/src/App.svelte -------------------------------------------------------------------------------- /e2e/samples/app/svelte/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/svelte/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/public/vite.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/src/assets/lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/src/assets/lit.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/src/index.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/src/my-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/src/my-element.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-lit/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-lit/vite.config.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/public/vite.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/src/app.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/src/app.jsx -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/src/index.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/src/main.jsx -------------------------------------------------------------------------------- /e2e/samples/app/vite-preact/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-preact/vite.config.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/public/vite.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/src/App.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/src/App.tsx -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/src/index.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/src/main.tsx -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-react/vite.config.ts -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/README.md -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/jsconfig.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/public/vite.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/src/App.svelte -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/src/app.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-svelte/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-svelte/vite.config.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/counter.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/javascript.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/main.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-vanilla/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vanilla/style.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/README.md -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/public/vite.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/src/App.vue -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/src/assets/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/src/assets/vue.svg -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/src/style.css -------------------------------------------------------------------------------- /e2e/samples/app/vite-vue/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vite-vue/vite.config.js -------------------------------------------------------------------------------- /e2e/samples/app/vitepress/docs/index.md: -------------------------------------------------------------------------------- 1 | # Hello VitePress 2 | -------------------------------------------------------------------------------- /e2e/samples/app/vitepress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vitepress/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/.gitignore -------------------------------------------------------------------------------- /e2e/samples/app/vue/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/.vscode/extensions.json -------------------------------------------------------------------------------- /e2e/samples/app/vue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/README.md -------------------------------------------------------------------------------- /e2e/samples/app/vue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/index.html -------------------------------------------------------------------------------- /e2e/samples/app/vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vue/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/public/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/app/vue/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/src/App.vue -------------------------------------------------------------------------------- /e2e/samples/app/vue/src/assets/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/src/assets/base.css -------------------------------------------------------------------------------- /e2e/samples/app/vue/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/src/assets/logo.svg -------------------------------------------------------------------------------- /e2e/samples/app/vue/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/src/main.js -------------------------------------------------------------------------------- /e2e/samples/app/vue/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vue/vite.config.js -------------------------------------------------------------------------------- /e2e/samples/app/vuepress/docs/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vuepress/docs/.npmignore -------------------------------------------------------------------------------- /e2e/samples/app/vuepress/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vuepress/docs/package.json -------------------------------------------------------------------------------- /e2e/samples/app/vuepress/docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/vuepress/docs/src/index.md -------------------------------------------------------------------------------- /e2e/samples/app/wintersmith/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/wintersmith/config.json -------------------------------------------------------------------------------- /e2e/samples/app/wintersmith/contents/archive.json: -------------------------------------------------------------------------------- 1 | { 2 | "template": "archive.pug" 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/app/wintersmith/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/wintersmith/package.json -------------------------------------------------------------------------------- /e2e/samples/app/wintersmith/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/wintersmith/readme.md -------------------------------------------------------------------------------- /e2e/samples/app/zola/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/zola/config.toml -------------------------------------------------------------------------------- /e2e/samples/app/zola/content/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/app/zola/content/blog/_index.md -------------------------------------------------------------------------------- /e2e/samples/db/static-mssql/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /test-results/ 3 | -------------------------------------------------------------------------------- /e2e/samples/db/static-mssql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/db/static-mssql/package.json -------------------------------------------------------------------------------- /e2e/samples/db/static-mssql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/db/static-mssql/readme.md -------------------------------------------------------------------------------- /e2e/samples/db/static-mssql/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/db/static-mssql/src/index.html -------------------------------------------------------------------------------- /e2e/samples/ssr/angular-universal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/angular-universal/README.md -------------------------------------------------------------------------------- /e2e/samples/ssr/angular-universal/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/angular-universal/server.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/angular-universal/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e2e/samples/ssr/angular-universal/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /e2e/samples/ssr/blazor-server/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/blazor-server/App.razor -------------------------------------------------------------------------------- /e2e/samples/ssr/blazor-server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/blazor-server/Program.cs -------------------------------------------------------------------------------- /e2e/samples/ssr/marko/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | *.log 4 | -------------------------------------------------------------------------------- /e2e/samples/ssr/marko/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/marko/README.md -------------------------------------------------------------------------------- /e2e/samples/ssr/marko/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/marko/package.json -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/.meteor/.id -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/.meteor/packages -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@2.7.1 2 | -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/.meteor/versions -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/client/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 10px; 3 | font-family: sans-serif; 4 | } 5 | -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/client/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/client/main.html -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/client/main.js -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/package.json -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/server/main.js -------------------------------------------------------------------------------- /e2e/samples/ssr/meteor/tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/meteor/tests/main.js -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/.gitignore -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/README.md -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/next.config.js -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/package.json -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/pages/_app.js -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/pages/api/hello.js -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/pages/index.js -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/public/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/public/vercel.svg -------------------------------------------------------------------------------- /e2e/samples/ssr/nextjs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/nextjs/styles/globals.css -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/.dockerignore -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/.env.example -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/.eslintrc.js -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/.gitignore -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/.prettierignore -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/Dockerfile -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/README.md -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/db.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/db.server.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/entry.client.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/entry.server.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/root.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/routes/index.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/routes/join.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/routes/join.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/routes/login.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/routes/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/routes/logout.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/routes/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/routes/notes.tsx -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/session.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/session.server.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/utils.test.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/app/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/app/utils.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/cypress.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/docker-compose.yml -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/fly.toml -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/mocks/README.md -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/mocks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/mocks/index.js -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/mocks/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/mocks/start.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/package.json -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/prisma/seed.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/public/favicon.ico -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/remix.config.js -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/remix.env.d.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/remix.init/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/remix.init/index.js -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/server.ts -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/tailwind.config.js -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/tsconfig.json -------------------------------------------------------------------------------- /e2e/samples/ssr/remix/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/samples/ssr/remix/vitest.config.ts -------------------------------------------------------------------------------- /e2e/vitest.config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/e2e/vitest.config.e2e.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/readme.md -------------------------------------------------------------------------------- /schema/staticwebapp.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/schema/staticwebapp.config.json -------------------------------------------------------------------------------- /schema/swa-cli.config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/schema/swa-cli.config.schema.json -------------------------------------------------------------------------------- /scripts/copy-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/scripts/copy-assets.js -------------------------------------------------------------------------------- /scripts/publish_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/scripts/publish_docker.sh -------------------------------------------------------------------------------- /src/cli/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/bin.js -------------------------------------------------------------------------------- /src/cli/commands/build/build.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/build/build.spec.ts -------------------------------------------------------------------------------- /src/cli/commands/build/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/build/build.ts -------------------------------------------------------------------------------- /src/cli/commands/build/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/build/register.ts -------------------------------------------------------------------------------- /src/cli/commands/db/init/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/db/init/init.spec.ts -------------------------------------------------------------------------------- /src/cli/commands/db/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/db/init/init.ts -------------------------------------------------------------------------------- /src/cli/commands/db/init/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/db/init/register.ts -------------------------------------------------------------------------------- /src/cli/commands/deploy/deploy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/deploy/deploy.spec.ts -------------------------------------------------------------------------------- /src/cli/commands/deploy/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/deploy/deploy.ts -------------------------------------------------------------------------------- /src/cli/commands/deploy/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/deploy/register.ts -------------------------------------------------------------------------------- /src/cli/commands/docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/docs.ts -------------------------------------------------------------------------------- /src/cli/commands/init/init.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/init/init.spec.ts -------------------------------------------------------------------------------- /src/cli/commands/init/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/init/init.ts -------------------------------------------------------------------------------- /src/cli/commands/init/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/init/register.ts -------------------------------------------------------------------------------- /src/cli/commands/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/login/login.ts -------------------------------------------------------------------------------- /src/cli/commands/login/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/login/register.ts -------------------------------------------------------------------------------- /src/cli/commands/start/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/start/register.ts -------------------------------------------------------------------------------- /src/cli/commands/start/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/commands/start/start.ts -------------------------------------------------------------------------------- /src/cli/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/index.spec.ts -------------------------------------------------------------------------------- /src/cli/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/cli/index.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/core/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/account.ts -------------------------------------------------------------------------------- /src/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/constants.ts -------------------------------------------------------------------------------- /src/core/dataApiBuilder/dab.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/dataApiBuilder/dab.spec.ts -------------------------------------------------------------------------------- /src/core/dataApiBuilder/dab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/dataApiBuilder/dab.ts -------------------------------------------------------------------------------- /src/core/dataApiBuilder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/dataApiBuilder/index.ts -------------------------------------------------------------------------------- /src/core/deploy-client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/deploy-client.spec.ts -------------------------------------------------------------------------------- /src/core/deploy-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/deploy-client.ts -------------------------------------------------------------------------------- /src/core/download-binary-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/download-binary-helper.ts -------------------------------------------------------------------------------- /src/core/env.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/env.spec.ts -------------------------------------------------------------------------------- /src/core/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/env.ts -------------------------------------------------------------------------------- /src/core/frameworks/detect.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/frameworks/detect.spec.ts -------------------------------------------------------------------------------- /src/core/frameworks/detect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/frameworks/detect.ts -------------------------------------------------------------------------------- /src/core/frameworks/frameworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/frameworks/frameworks.ts -------------------------------------------------------------------------------- /src/core/frameworks/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/frameworks/types.d.ts -------------------------------------------------------------------------------- /src/core/func-core-tools.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/func-core-tools.spec.ts -------------------------------------------------------------------------------- /src/core/func-core-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/func-core-tools.ts -------------------------------------------------------------------------------- /src/core/functions-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/functions-versions.ts -------------------------------------------------------------------------------- /src/core/git.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/git.spec.ts -------------------------------------------------------------------------------- /src/core/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/git.ts -------------------------------------------------------------------------------- /src/core/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/prompts.ts -------------------------------------------------------------------------------- /src/core/ssl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/ssl.ts -------------------------------------------------------------------------------- /src/core/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/auth.ts -------------------------------------------------------------------------------- /src/core/utils/cli-config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cli-config.spec.ts -------------------------------------------------------------------------------- /src/core/utils/cli-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cli-config.ts -------------------------------------------------------------------------------- /src/core/utils/cli.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cli.spec.ts -------------------------------------------------------------------------------- /src/core/utils/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cli.ts -------------------------------------------------------------------------------- /src/core/utils/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/command.ts -------------------------------------------------------------------------------- /src/core/utils/cookie.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cookie.spec.ts -------------------------------------------------------------------------------- /src/core/utils/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/cookie.ts -------------------------------------------------------------------------------- /src/core/utils/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/docker.ts -------------------------------------------------------------------------------- /src/core/utils/fetch-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/fetch-proxy.ts -------------------------------------------------------------------------------- /src/core/utils/file.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/file.spec.ts -------------------------------------------------------------------------------- /src/core/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/file.ts -------------------------------------------------------------------------------- /src/core/utils/glob.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/glob.spec.ts -------------------------------------------------------------------------------- /src/core/utils/glob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/glob.ts -------------------------------------------------------------------------------- /src/core/utils/json.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/json.spec.ts -------------------------------------------------------------------------------- /src/core/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/json.ts -------------------------------------------------------------------------------- /src/core/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/logger.ts -------------------------------------------------------------------------------- /src/core/utils/net.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/net.spec.ts -------------------------------------------------------------------------------- /src/core/utils/net.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/net.ts -------------------------------------------------------------------------------- /src/core/utils/openidHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/openidHelper.ts -------------------------------------------------------------------------------- /src/core/utils/options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/options.spec.ts -------------------------------------------------------------------------------- /src/core/utils/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/options.ts -------------------------------------------------------------------------------- /src/core/utils/platform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/platform.spec.ts -------------------------------------------------------------------------------- /src/core/utils/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/platform.ts -------------------------------------------------------------------------------- /src/core/utils/strings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/strings.spec.ts -------------------------------------------------------------------------------- /src/core/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/strings.ts -------------------------------------------------------------------------------- /src/core/utils/update-notifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/update-notifier.ts -------------------------------------------------------------------------------- /src/core/utils/user-config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/user-config.spec.ts -------------------------------------------------------------------------------- /src/core/utils/user-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/user-config.ts -------------------------------------------------------------------------------- /src/core/utils/workflow-config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/workflow-config.spec.ts -------------------------------------------------------------------------------- /src/core/utils/workflow-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/core/utils/workflow-config.ts -------------------------------------------------------------------------------- /src/msha/auth/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/auth/index.ts -------------------------------------------------------------------------------- /src/msha/auth/routes/auth-logout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/auth/routes/auth-logout.spec.ts -------------------------------------------------------------------------------- /src/msha/auth/routes/auth-logout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/auth/routes/auth-logout.ts -------------------------------------------------------------------------------- /src/msha/auth/routes/auth-me.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/auth/routes/auth-me.ts -------------------------------------------------------------------------------- /src/msha/handlers/auth.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/handlers/auth.handler.ts -------------------------------------------------------------------------------- /src/msha/handlers/dab.handler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/handlers/dab.handler.spec.ts -------------------------------------------------------------------------------- /src/msha/handlers/dab.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/handlers/dab.handler.ts -------------------------------------------------------------------------------- /src/msha/handlers/error-page.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/handlers/error-page.handler.ts -------------------------------------------------------------------------------- /src/msha/handlers/function.handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/handlers/function.handler.ts -------------------------------------------------------------------------------- /src/msha/routes-engine/route-processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/routes-engine/route-processor.ts -------------------------------------------------------------------------------- /src/msha/routes-engine/rules/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/routes-engine/rules/headers.ts -------------------------------------------------------------------------------- /src/msha/routes-engine/rules/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/routes-engine/rules/routes.ts -------------------------------------------------------------------------------- /src/msha/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/msha/server.ts -------------------------------------------------------------------------------- /src/public/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/public/401.html -------------------------------------------------------------------------------- /src/public/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/public/403.html -------------------------------------------------------------------------------- /src/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/public/404.html -------------------------------------------------------------------------------- /src/public/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/public/auth.html -------------------------------------------------------------------------------- /src/swa.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/swa.d.ts -------------------------------------------------------------------------------- /src/test.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/src/test.helpers.ts -------------------------------------------------------------------------------- /tests/_mocks/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/tests/_mocks/fetch.js -------------------------------------------------------------------------------- /tests/_mocks/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/tests/_mocks/fs.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/static-web-apps-cli/HEAD/vitest.config.unit.ts -------------------------------------------------------------------------------- /vitest.workspace.ts: -------------------------------------------------------------------------------- 1 | export default ["./vitest.config.unit.ts"]; 2 | --------------------------------------------------------------------------------