https://github.com/liveduo/destack-react-starter
Starter template for Destack - the visual page builder for React.
https://github.com/liveduo/destack-react-starter
landing-page nextjs react-template reactjs template
Last synced: 10 months ago
JSON representation
Starter template for Destack - the visual page builder for React.
- Host: GitHub
- URL: https://github.com/liveduo/destack-react-starter
- Owner: LiveDuo
- Created: 2021-12-16T18:54:24.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-10-22T23:58:25.000Z (over 1 year ago)
- Last Synced: 2025-03-27T22:01:36.958Z (10 months ago)
- Topics: landing-page, nextjs, react-template, reactjs, template
- Language: HTML
- Homepage:
- Size: 2.9 MB
- Stars: 14
- Watchers: 2
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Destack React Starter
This example shows a very basic version of a *Destack* project with React.js and CRA.
- There's one page, `App.js`, that shows the visual editor (in development) and the compiled version (in production).
- All the magic is done with the `destack -d` and `destack -b`, that has to be setup once and handles templates saving and loading.
## Deploy your own
Deploy the example using [Vercel](https://vercel.com) or preview in Gitpod:
[
](https://vercel.com/new/git/external?repository-url=https://github.com/LiveDuo/destack-react-starter&project-name=destack-react-starter&repository-name=destack-react-starter)
[
](https://gitpod.io/#https://github.com/LiveDuo/destack-react-starter)
## How to
#### Development
Clone this repository:
```sh
git clone https://github.com/liveduo/destack-react-starter
```
Install dependencies:
```sh
npm i
```
Run in development:
```sh
npm run dev
```
#### Production
Build for production:
```sh
npm run build
```
Run in production:
```sh
npm start
```
Deploy it to the cloud with [Vercel](https://vercel.com/new) ([Documentation](https://nextjs.org/docs/deployment)).