Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kclejeune/portfolio
personal website and project portfolio written with typescript, svelte-kit, and tailwind CSS
https://github.com/kclejeune/portfolio
cloudflare-workers svelte sveltekit tailwindcss terraform
Last synced: 10 days ago
JSON representation
personal website and project portfolio written with typescript, svelte-kit, and tailwind CSS
- Host: GitHub
- URL: https://github.com/kclejeune/portfolio
- Owner: kclejeune
- License: mit
- Created: 2021-07-17T02:29:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-07-07T19:24:57.000Z (4 months ago)
- Last Synced: 2024-10-12T00:05:10.689Z (27 days ago)
- Topics: cloudflare-workers, svelte, sveltekit, tailwindcss, terraform
- Language: Svelte
- Homepage: https://kclj.io
- Size: 5.28 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Portfolio
[![CI](https://github.com/kclejeune/portfolio/actions/workflows/ci.yml/badge.svg)](https://github.com/kclejeune/portfolio/actions/workflows/ci.yml)
Basic personal site written with SvelteKit as an overpowered static site generator.
SvelteKit allows for development and page rendering in JavaScript, but remains compatible with non-js browsers.## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.