https://github.com/sinedied/frameworks-playground
Create samples apps for multiple frameworks
https://github.com/sinedied/frameworks-playground
Last synced: about 1 month ago
JSON representation
Create samples apps for multiple frameworks
- Host: GitHub
- URL: https://github.com/sinedied/frameworks-playground
- Owner: sinedied
- License: mit
- Created: 2022-04-13T12:08:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-17T16:01:20.000Z (over 2 years ago)
- Last Synced: 2025-08-30T11:40:40.163Z (about 1 month ago)
- Language: Shell
- Homepage:
- Size: 6.27 MB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🛝 frameworks-playground
[](https://github.com/sinedied/frameworks-playground/actions)
[](LICENSE)> Create samples apps for multiple web frameworks.
You can view the generated samples in the [`samples`](https://github.com/sinedied/frameworks-playground/tree/samples/) branch.
## Usage
**Prerequisite:** you need [Docker](https://www.docker.com/products/docker-desktop/) installed.
To generate samples for all frameworks, run:
```bash
./docker.sh build # build the image, only needed once
./docker.sh run [--clean] # generate samples
```Unless you use the `--clean` option, if you run the command again, it will only generate samples for new frameworks, which is handy when adding support for new frameworks.
A [dev container](https://code.visualstudio.com/docs/remote/containers?WT.mc_id=javascript-0000-yolasors) with all needed tools is also available.
From within the devcontainer, you can run simply the command:
```bash
./create_samples.sh [--clean]
```By default, log output from the generator commands are hidden, but you can see them by setting the `DEBUG` environment variable:
```bash
DEBUG=1 ./docker.sh run
```