Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix essay #203

Merged
merged 1 commit into from Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -86,7 +86,7 @@ yarn config set registry https://registry.npmmirror.com/ --global && \
yarn config set selenium_cdnurl https://cdn.npmmirror.com/binaries/selenium --global && \
yarn config set node_inspector_cdnurl https://cdn.npmmirror.com/binaries/node-inspector --global
yarn
yarn dev
ARTALK_SERVER_URL=https://v4.terwergreen.com:8003 yarn dev
```
or simplely dev front project without step2

Expand Down
7 changes: 7 additions & 0 deletions dev.sh
@@ -1,9 +1,16 @@
#!/bin/sh

# 终止占用8008端口的进程
lsof -ti:8008 | xargs kill -9

# 终止占用3000端口的进程
lsof -ti:3000 | xargs kill -9

# sudo n 18

cd jvue-server
./mvnw clean spring-boot:run -Dspring-boot.run.profiles=dev -DskipTests &

cd ../jvue-front
ARTALK_SERVER_URL=https://v4.terwergreen.com:8003
yarn dev
4 changes: 2 additions & 2 deletions jvue-front/pages/essay.css
Expand Up @@ -18,8 +18,8 @@
.lay-blog .container .count .layblog-this{color: #FF5722 !important;}

/* start container */
.lay-blog .container-wrap{margin:0px auto 0;min-height:100%;padding:40px 0 160px 0;box-sizing: border-box;}
.lay-blog .container{width:1200px;margin:0 auto;}
.lay-blog .container-wrap{margin:0px auto 0;min-height:100%;padding:40px 0 20px 0;box-sizing: border-box;}
.lay-blog .container{margin:0 auto;}
.lay-blog .container h4{font-weight:bold;line-height:32px;font-size:16px;}
.lay-blog .container h4 p{padding-left:40px;color:#666666;}
.lay-blog .container h4 p i{font-size:26px;padding-right:10px;position:relative;top:3px;}
Expand Down