美文网首页
博客部署

博客部署

作者: Mark同学 | 来源:发表于2019-12-29 11:51 被阅读0次

开发环境

1. server/config/index.js

  • 35行数据库名字改掉
database: 'test',
  • 37行数据库密码改掉
password: '123456',

2. src/config.js

  • 29行改掉
enable: true, => enable: false,

3. 注册 mark/axxxxxx

  • 数据库修改权限

4. 修改 mysql 密码

  • alter user 'root'@'localhost'IDENTIFIED BY 'axxxxxx';

生产环境

1 .src/config.js

  • 5行新增服务器地址
export const API_BASE_URL = 'http://bactravel.com:6060'

2.yarn build

  • 用 nginx 做静态资源的代理服务器: servername xxx.com

3. package.json

  • "prd": "cross-env NODE_ENV=development pm2 start app.js"
  • 直接用 pm2 启开发环境: yarn prd

个人信息

1.src/config.js

  • 9行改掉
  • 14行改掉
  • 15行改掉
  • 18行改掉
  • 19行改掉

2.侧边栏头像改掉

3.public/index.html

  • 27行改掉

4.Myinfo.jsx 大调

相关文章

网友评论

      本文标题:博客部署

      本文链接:https://www.haomeiwen.com/subject/hiryoctx.html