285 | hint: search where to find the bugs 286 |
287 | {/if} 288 |├── .env.example
├── .vscode
└── extensions.json
├── public
├── logo.png
└── favicon.ico
├── src
├── vite-env.d.ts
├── assets
│ ├── svelte.png
│ ├── asciiArt.js
│ └── commands.js
├── main.css
├── main.js
├── composables
│ └── clickOutside.js
└── App.svelte
├── README.md
├── vite.config.js
├── .gitignore
├── package.json
├── windi.config.js
├── index.html
├── jsconfig.json
└── yarn.lock
/.env.example:
--------------------------------------------------------------------------------
1 | VITE_PASSWORD=
2 |
3 | VITE_PASSWORD_DE=
4 |
5 | VITE_PROJECTS_API_URL=
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["svelte.svelte-vscode"]
3 | }
4 |
--------------------------------------------------------------------------------
/public/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Nico-Mayer/svelte-terminal/HEAD/public/logo.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Nico-Mayer/svelte-terminal/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
285 | hint: search where to find the bugs 286 |
287 | {/if} 288 |