https://github.com/devcyclehq-sandbox/bootstrap-example-remix
An example setup of using DevCycle's built-in bootstrapping functionality in Remix
https://github.com/devcyclehq-sandbox/bootstrap-example-remix
Last synced: about 2 months ago
JSON representation
An example setup of using DevCycle's built-in bootstrapping functionality in Remix
- Host: GitHub
- URL: https://github.com/devcyclehq-sandbox/bootstrap-example-remix
- Owner: DevCycleHQ-Sandbox
- Created: 2024-05-03T19:12:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-19T04:45:14.000Z (7 months ago)
- Last Synced: 2025-01-27T13:11:36.644Z (4 months ago)
- Language: TypeScript
- Size: 103 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DevCycle Bootstrapping with Remix Example
This is an example of how to use DevCycle with Remix. It uses a combination of the DevCycle Node.js SDK on the server and the DevCycle React SDK
on the client. The Node SDK retrieves a configuration to be used for client-side bootstrapping.To see the bootstrapping process, check out [root.tsx](./app/root.tsx).
For more information on how to use bootstrapping, see our guide in the [DevCycle Docs](https://docs.devcycle.com/sdk/server-side-sdks/node/node-bootstrapping).
## Setup
Install the dependencies using npm or yarn
`npm install`
`yarn`Set the environment variable `DEVCYCLE_SERVER_SDK_KEY` to your DevCycle Server SDK Key.
## Development
Run the Vite dev server:
```shellscript
yarn dev
```