정민우

[Edit] Readme 수정

Showing 1 changed file with 11 additions and 2 deletions
......@@ -28,10 +28,13 @@ VPS는 Virtual Private Server의 약자로 가상 사설 서버를 의미합니
## 설치 방법
1. Clone the repository.
```bash
git clone http://khuhub.khu.ac.kr/2020105655/vps_service
```
2. Install npm packages frontend, backend.
```bash
cd frontend
npm install
......@@ -40,13 +43,17 @@ VPS는 Virtual Private Server의 약자로 가상 사설 서버를 의미합니
npm install
cd ..
```
3. Build frontend react app.
```bash
cd frontend
npm run build
```
4. Create new file named `.env` at ./backend and enter info as below.
- .env.example 파일 참조
4. Create new file named `.env` at `./backend` and enter info as below.
- `.env.example` 파일 참조
```
PORT=3000
MYSQL_USERNAME=root
......@@ -59,7 +66,9 @@ VPS는 Virtual Private Server의 약자로 가상 사설 서버를 의미합니
INITIAL_ADMIN_PW=
JWT_KEY=
```
5. Edit nginx config file.
```
server {
server_name {YOUR URL};
......