Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yumin-jung/cs492c-fed
커뮤니케이션 도구 게시판/협업 도구 개발
https://github.com/yumin-jung/cs492c-fed
react storybook
Last synced: about 1 month ago
JSON representation
커뮤니케이션 도구 게시판/협업 도구 개발
- Host: GitHub
- URL: https://github.com/yumin-jung/cs492c-fed
- Owner: yumin-jung
- Created: 2021-10-29T09:52:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-07T08:22:56.000Z (about 3 years ago)
- Last Synced: 2024-11-10T16:17:31.671Z (3 months ago)
- Topics: react, storybook
- Language: JavaScript
- Homepage:
- Size: 58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS492C-FED
커뮤니케이션 도구 게시판/협업 도구 개발## Quick instructions
First, clone the repository.
```bash
git clone https://github.com/yuminyumin/CS492C-FED.git
cd CS492C-FED
```The below command will do the job for you.
```bash
bash all.sh
```If you have already once run `all.sh`,
then it should be sufficient to only run
```bash
bash run.sh
```If there seems to be any error while running, try
```bash
bash fix.sh
```If there is any need to run `npm install`, try
```bash
bash install.sh
```## Detailed instructions
To run the command separately, you should follow the instructions below.
First, clone the repository.
```bash
git clone https://github.com/yuminyumin/CS492C-FED.git
cd CS492C-FED
```Then set up the server.
```bash
cd server
npm install
npm audit fix
cd ..
```Finally, set up the client.
```bash
cd client
npm install
npm audit fix
cd ..
```Now you should start both the server and the client.
```bash
bash (cd server; npm start) & (cd client; npm start) && fg
```## How to Run Storybook
Run as follows.
```bash
cd client
npm run storybook
```