Skip to content

Commit

Permalink
docs: readme images
Browse files Browse the repository at this point in the history
  • Loading branch information
Away0x committed Aug 18, 2020
1 parent 10ef3b9 commit 1ef3a57
Show file tree
Hide file tree
Showing 10 changed files with 26 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
public
build
storybook-static
NeteaseCloudMusicApi
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,12 @@ hygen generator new component # 创建 component 命令
```

---

<p style="padding:5%">
<img title="推荐列表页" alt="推荐列表页" src="./readme/1.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
<img title="歌手列表页" alt="歌手列表页" src="./readme/2.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
<img title="排行榜页" alt="排行榜页" src="./readme/3.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
<img title="歌单详情页" alt="歌单详情页" src="./readme/4.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
<img title="搜索页" alt="搜索页" src="./readme/5.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
<img title="搜索结果页" alt="搜索结果页" src="./readme/6.png" style="width:40%;margin-bottom:5%;margin-right:5%" />
</p>
12 changes: 12 additions & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
server {
listen 80;
server_name cloudmusic.frontendgo.com;

location / {
proxy_pass http://127.0.0.1:8010;
}

location /api/ {
proxy_pass http://127.0.0.1:3000/;
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"server:prod:status": "pm2 describe react-cloud-music",
"api:dev:start": "cd NeteaseCloudMusicApi && yarn start",
"api:prod:start": "pm2 start ./NeteaseCloudMusicApi/app.js --name cloud-music-api",
"api:prod:stop": "pm2 stop ./NeteaseCloudMusicApi/app.js --name cloud-music-api",
"api:prod:restart": "pm2 restart ./NeteaseCloudMusicApi/app.js --name cloud-music-api",
"api:prod:status": "pm2 describe ./NeteaseCloudMusicApi/app.js --name cloud-music-api",
"api:prod:stop": "pm2 stop cloud-music-api",
"api:prod:restart": "pm2 restart cloud-music-api",
"api:prod:status": "pm2 describe cloud-music-api",
"pm2:monit": "pm2 monit",
"git:commit": "git-cz"
},
Expand Down
Binary file added readme/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added readme/6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 1ef3a57

Please sign in to comment.