Skip to content

Commit 17abbdb

Browse files
committed
Add initial files for RedwoodSDK playground.
1 parent ade387c commit 17abbdb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+17371
-0
lines changed

playground/render-apis/.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Node modules
2+
node_modules
3+
4+
# Logs
5+
logs
6+
*.log
7+
npm-debug.log*
8+
pnpm-debug.log*
9+
10+
# Environment variables
11+
.env
12+
.dev.vars
13+
14+
# Vite build output
15+
dist
16+
17+
# TypeScript
18+
*.tsbuildinfo
19+
20+
# IDEs and editors
21+
.vscode/
22+
.idea/
23+
*.suo
24+
*.ntvs*
25+
*.njsproj
26+
*.sln
27+
*.sw?
28+
29+
# MacOS
30+
.DS_Store
31+
32+
# Optional npm cache directory
33+
.npm
34+
35+
# Optional eslint cache
36+
.eslintcache
37+
38+
# Optional stylelint cache
39+
.stylelintcache
40+
41+
# Optional REPL history
42+
.node_repl_history
43+
44+
# Output of 'npm pack'
45+
*.tgz
46+
47+
# pnpm store directory
48+
.pnpm-store
49+
50+
# dotenv environment variables file
51+
.env.local
52+
.env.development.local
53+
.env.test.local
54+
.env.production.local
55+
56+
# Vite cache
57+
.vite
58+
59+
# Coverage directory used by tools like istanbul
60+
coverage
61+
62+
# Temporary files
63+
*.tmp
64+
*.temp
65+
66+
# Wrangler
67+
.wrangler

playground/render-apis/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# RedwoodSDK Minimal Starter
2+
3+
This starter gives you a bare-bones RedwoodSDK project.
4+
5+
Create your new project:
6+
7+
```shell
8+
npx create-rwsdk my-project-name -t minimal
9+
cd my-project-name
10+
npm install
11+
```
12+
13+
## Running the dev server
14+
15+
```shell
16+
npm run dev
17+
```
18+
19+
Point your browser to the URL displayed in the terminal (e.g. `http://localhost:5173/`). You should see a "Hello World" message in your browser.
20+
21+
## Further Reading
22+
23+
- [RedwoodSDK Documentation](https://docs.rwsdk.com/)
24+
- [Cloudflare Workers Documentation](https://developers.cloudflare.com/workers)

0 commit comments

Comments
 (0)