Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinshih-689/backstage
Specialized technology portal for developers
https://github.com/kevinshih-689/backstage
docker express nodejs postgresql reactjs storybook typescript yarn
Last synced: 20 days ago
JSON representation
Specialized technology portal for developers
- Host: GitHub
- URL: https://github.com/kevinshih-689/backstage
- Owner: KevinShih-689
- Created: 2024-01-11T10:44:34.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-02-22T08:56:12.000Z (11 months ago)
- Last Synced: 2024-04-26T00:23:16.782Z (9 months ago)
- Topics: docker, express, nodejs, postgresql, reactjs, storybook, typescript, yarn
- Language: TypeScript
- Homepage:
- Size: 2.78 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [Backstage](https://backstage.io)
## Develop
### Environments
* #### Node
```
v18.16.0
```
* #### NPM
```
v9.5.1
```
* #### yarn
```
v1.22.21
```
### How to Start
###### Before you start, make sure the version of nodeJS in your environment is v18.16.0. You can use command below to switch version by using `nvm`
```sh
$ nvm use
``````sh
$ yarn install
$ yarn dev
```
#### Trouble Shooting
* ##### Export `useSyncExternalStore` was not found in `react`
###### 👎 If you get the bad feedback when you execute `yarn dev`![Alt text](./readme-images/readme-01.png)
###### Solution:
* ###### Open ` package.json ` file of the root path
* ![Alt text](./readme-images/readme-02.png)
* ###### Re-install
```shell
$ yarn install
```
* ###### Repeat to verify that the problem is solved
```shell
$ yarn dev
```
### Component
###### To view all the components you can import by following this [link](https://backstage.io/storybook/?path=/story/plugins-examples--plugin-with-data)## Deploy
###### For a complete step-by-step guide, please refer to this [link](https://github.com/KevinShih-689/note/blob/main/learning-note/backstage/backstage.md#deploy).