https://github.com/nullndr/matadorinstaller
A bash script to install Matador in your Remix.run project
https://github.com/nullndr/matadorinstaller
matador-stack
Last synced: 8 months ago
JSON representation
A bash script to install Matador in your Remix.run project
- Host: GitHub
- URL: https://github.com/nullndr/matadorinstaller
- Owner: nullndr
- Created: 2022-05-26T06:57:04.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-07T05:36:58.000Z (about 4 years ago)
- Last Synced: 2025-07-25T19:59:42.889Z (11 months ago)
- Topics: matador-stack
- Language: Shell
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# matadorInstall
> ⚠️ this repo is for testing purpose, the official release can be found [here](https://github.com/nullndr/Matador/blob/main/remix.init/installer.sh)
# What if I already have a Remix project with BullMQ?
in order to simply install [Matador](https://github.com/nullndr/Matador) in your [Remix](https://remix.run) project, run:
```bash
$ curl https://raw.githubusercontent.com/nullndr/Matador/main/remix.init/installer.sh | \
sh -s -- "/my/remix/project"
```
Matador will be copied in `/my/remix/project/app/routes/matador`, `/my/remix/project/app/routes/matador.tsx` and
`/my/remix/project/app/lib/matador`.
### But wait a sec, I do not use the app folder!!
Not a problem, you can provide the folder as the second argument of the script:
```bash
$ curl https://raw.githubusercontent.com/nullndr/Matador/main/remix.init/installer.sh | \
sh -s -- "/my/remix/project" "root"
```
Matador will be copied in `/my/remix/project/root/routes/matador`, `/my/remix/project/root/routes/matador.tsx` and
`/my/remix/project/root/lib/matador`.