285 | hint: search where to find the bugs 286 |
287 | {/if} 288 |├── .env.example ├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── jsconfig.json ├── package-lock.json ├── package.json ├── public ├── favicon.ico └── logo.png ├── src ├── App.svelte ├── assets │ ├── asciiArt.js │ ├── commands.js │ └── svelte.png ├── composables │ └── clickOutside.js ├── main.css ├── main.js └── vite-env.d.ts ├── vite.config.js ├── windi.config.js └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | VITE_PASSWORD= 2 | 3 | VITE_PASSWORD_DE= 4 | 5 | VITE_PROJECTS_API_URL= -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | .env -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["svelte.svelte-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 | ### [Demo Link](https://svelte-terminal-one.vercel.app/) 4 | 5 | Svelte Terminal is a terminal like Website. 6 | Its my first project build with svelte, and a fun little Project. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 16 | 17 |285 | hint: search where to find the bugs 286 |
287 | {/if} 288 |