Coding.net已全面升级为腾讯云开发者平台。要开通Coding博客,首先需要确保已经配置好了git。接下来,我们将分为以下几个步骤来创建博客:
1. 创建coding博客仓库:
- 创建仓库,仓库名为你的用户名.coding.me,例如:tonyu2019.coding.me(默认公开)。
- 进入刚才创建的仓库,点击Pages服务进行部署。
2. 开始创建博客:
- Hexo是一个简单、快速、强大的基于coding Pages的博客发布工具,支持Markdown格式,有众多优秀插件和主题。这里我们选择使用hexo创建博客。
- 首先安装hexo:`npm install -g hexo`
- 然后初始化仓库:`cd tonyu2019.coding.me && hexo init`
- 接着生成静态文件:`hexo g`
- 最后启动服务:`hexo s`
3. 添加主题:
- 从GitHub上克隆一个主题到本地:`git clone https://github.com/CodeDaraW/Hacker.git themes/hacker`
- 在`_config.yml`文件中添加主题:`theme: hacker`
- 在`deploy.yml`文件中配置部署信息:`deploy: type: git repository: git@git.dev.tencent.com:tonyu2019/tonyu2019.coding.me.git branch: master`
4. 如果使用hexo d出现“Deployer not found: coding”或“Deployer not found: git”错误,需要执行以下命令安装hexo-deployer-git插件:`npm install hexo-deployer-git --save`
5. 创建新博客:`hexo new 'my-first-blog'`
6. 生成静态文件:`hexo d -g`
7. 最后,访问https://tonyu2019.coding.me即可看到网站(tonyu2019要换成你的用户名哟)。