Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat (email): new email templates #52

Merged
merged 11 commits into from
Nov 25, 2024
Prev Previous commit
Next Next commit
email init
  • Loading branch information
sickl8 committed Nov 21, 2024
commit 2ffa1882308894bb3f7ded5cd7583cec98dbd9bd
26 changes: 26 additions & 0 deletions email/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
node_modules

# Output
.output

/build
/dist

# OS
.DS_Store
Thumbs.db

# Env
.env
.env.*
!.env.example
!.env.test

# Vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*

# symlinks
tailwind.config.ts
src/vars.css
src/logo.svg
1 change: 1 addition & 0 deletions email/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
38 changes: 38 additions & 0 deletions email/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# sv

Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).

## Creating a project

If you're seeing this, you've probably already done this step. Congrats!

```bash
# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app
```

## 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://svelte.dev/docs/kit/adapters) for your target environment.
8 changes: 8 additions & 0 deletions email/ln.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
rm -rf \
tailwind.config.ts \
src/vars.css \
src/logo.svg \
;
ln -s ../tailwind.config.ts tailwind.config.ts;
ln -s ../../src/lib/styles/vars.css src/vars.css;
ln -s ../../src/lib/components/partials/SvgLogo.svelte src/logo.svg;
Loading