Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/useflyyer/studio
Companion dev server for @flyyer/cli and create-flyyer-app | https://useflyyer.github.io/studio/
https://github.com/useflyyer/studio
devtools flyyer gh-pages nextjs og-images react seo twitter-cards
Last synced: about 23 hours ago
JSON representation
Companion dev server for @flyyer/cli and create-flyyer-app | https://useflyyer.github.io/studio/
- Host: GitHub
- URL: https://github.com/useflyyer/studio
- Owner: useflyyer
- Created: 2020-10-30T02:11:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-01T23:37:26.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T06:49:26.851Z (over 1 year ago)
- Topics: devtools, flyyer, gh-pages, nextjs, og-images, react, seo, twitter-cards
- Language: TypeScript
- Homepage: https://useflyyer.github.io/studio/
- Size: 8.1 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [useflyyer.github.io/studio](https://useflyyer.github.io/studio)
Companion of [@flyyer/cli](https://github.com/useflyyer/flyyer-cli)
[![screenshot of the UI](./.github/screenshot.png)](https://useflyyer.github.io/studio)
> Photo by Calbert Warner from [Pexels](https://www.pexels.com/photo/woman-above-man-2889943/)
There is no need to run this on your machine, just go to [the deployed site on GitHub](useflyyer.github.io/studio) to develop and preview your flyyer templates.
```sh
yarn add --dev @flyyer/cli
yarn run flyyer start
# Opens https://useflyyer.github.io/studio
```After testing in a couple of browsers **we recommend running this on Firefox**. The only way of running this on Safari is by cloning this repository and running it locally.
---
## Local server
In the case you want to run this locally:
Clone the repository and install all the dependencies:
```sh
git clone https://github.com/useflyyer/studio.git
cd studio
yarn install
```Run at [http://localhost:3000](http://localhost:3000):
```sh
yarn build
yarn start
```## Development
Run on development mode at [http://localhost:3000](http://localhost:3000):
```sh
yarn dev
```## Deploy to GitHub Pages
> Documentation for the developers at Flyyer
Make sure you are part of the `flyyer` organization, then run:
```sh
NODE_ENV=production yarn run build && yarn run export && yarn run deploy
```