Skip to content

Commit f993aa9

Browse files
committed
Update versioning and streamline local development setup
This commit updates the version of the create-remote-app package to 0.0.4 and simplifies the local development script in the template's package.json by removing the automatic .env file creation. Additionally, the README is cleaned up by removing outdated local development instructions, enhancing clarity for users. The UI in +page.svelte is also adjusted for improved readability.
1 parent ea7d4a8 commit f993aa9

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

packages/create-remote-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-remote-app",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "Create a new SvelteKit + Better Auth + Durable Objects app",
55
"type": "module",
66
"bin": {

packages/create-remote-app/template/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ Barebones SvelteKit + Better Auth + Durable Objects starter.
44

55
## Quick Start
66

7-
### Local Development
8-
97
```bash
108
# 1. Set your Alchemy password
119
echo 'ALCHEMY_PASSWORD=your-secure-password' > .env
@@ -14,10 +12,6 @@ echo 'ALCHEMY_PASSWORD=your-secure-password' > .env
1412
bun run dev
1513
```
1614

17-
### StackBlitz
18-
19-
The template works in StackBlitz - just run `npm run dev` and it will set up the environment automatically.
20-
2115
## What's Included
2216

2317
- **SvelteKit** with Svelte 5 and remote functions

packages/create-remote-app/template/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.1",
44
"private": true,
55
"scripts": {
6-
"dev": "test -f .env || echo 'ALCHEMY_PASSWORD=demo-password\nBETTER_AUTH_SECRET=85000968f86b5d30510b5b73186b914c430f8e1573614a6d75ed4cc53383517a\nBETTER_AUTH_URL=http://localhost:5173' > .env && alchemy dev",
6+
"dev": "alchemy dev",
77
"deploy": "alchemy deploy",
88
"destroy": "alchemy destroy",
99
"build": "vite build",

src/routes/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@
320320
</a>
321321
</div>
322322
</div> -->
323-
<div class="text-xs font-mono text-white/70 space-y-4">
323+
<div class="text-xl font-mono text-white/70 space-y-4">
324324
<!-- <div class="block">or:</div> -->
325325
<div class="text-white font-bold">bun create remote-app my-app</div>
326326
</div>

0 commit comments

Comments
 (0)