Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cannikin/cambium
Sample RedwoodJS RSC App
https://github.com/cannikin/cambium
Last synced: about 2 months ago
JSON representation
Sample RedwoodJS RSC App
- Host: GitHub
- URL: https://github.com/cannikin/cambium
- Owner: cannikin
- License: other
- Created: 2024-02-21T23:03:18.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-03-05T21:32:37.000Z (10 months ago)
- Last Synced: 2024-10-12T15:21:59.514Z (3 months ago)
- Language: TypeScript
- Size: 257 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Cambium
A simple photo editing app demonstrating RedwoodJS's support for React Server Components.
## Prerequisties
1. Node 20
2. Yarn 4
3. Corepack enabledIf you have `nvm` installed, you should be able to get up and running after checking out the code with:
```
nvm install 20
npm install -g yarn
corepack enable
yarn set version 4
yarn install
```## Development
The standard Redwood dev server isn't supported yet, so in the meantime you'll need to build and serve after every change:
```
yarn rw build
yarn rw serve
```Or the one-liner:
```
yarn rw build && yarn rw serve
```## Usage
Select a photo and then apply simple edits supported by CSS filters.
Add your own photos to the gallery by putting them in `web/src/public/photos`. Restart your server and they should now be available for editing!