WIP: My personal website
1# My personal website refresh
2WIP WIP. Originally from a template cause whose got the time to get fancy with css
3
4
5
6
7# TODO ideas
8- Switch between pumpkin edit and not pic depending if it's baileytownsend.dev or pds.dad
9- Show what I'm currently listening to and reading
10- Show my current projects from tangled and github. May do static, may do dynamic. Not sure yet
11- show current/recent writings from leaflet.
12- Maybe show github sponsors?
13
14- Probably sections
15 - Current projects
16 - Current writings
17 - As seen on (show places I've given talks or workshops)
18
19
20# sv
21
22Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).
23
24## Creating a project
25
26If you're seeing this, you've probably already done this step. Congrats!
27
28```sh
29# create a new project
30npx sv create my-app
31```
32
33To recreate this project with the same configuration:
34
35```sh
36# recreate this project
37pnpm dlx sv@0.15.4 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography,forms" --install pnpm my-website
38```
39
40## Developing
41
42Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
43
44```sh
45npm run dev
46
47# or start the server and open the app in a new browser tab
48npm run dev -- --open
49```
50
51## Building
52
53To create a production version of your app:
54
55```sh
56npm run build
57```
58
59You can preview the production build with `npm run preview`.
60
61> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.