Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anchnet/front-end-practice
安畅前端实践
https://github.com/anchnet/front-end-practice
Last synced: about 1 month ago
JSON representation
安畅前端实践
- Host: GitHub
- URL: https://github.com/anchnet/front-end-practice
- Owner: anchnet
- Created: 2020-01-17T06:32:07.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-05T04:33:00.000Z (about 2 years ago)
- Last Synced: 2024-05-23T05:01:45.112Z (7 months ago)
- Language: JavaScript
- Homepage: https://fe.anchnet.com/
- Size: 1.05 MB
- Stars: 2
- Watchers: 7
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# front-end-practice
安畅前端实践## 贡献方法
1. Fork 主项目到个人仓库
2. 本地仓库建立两个远程,分别对应主项目及个人项目。
``` bash
git remote add upstream [email protected]:anchnet/front-end-practice.git
git remote add origin [email protected]:/front-end-practice.git
```
3. 开发流程
``` bash
# 拉取主项目最新代码
git pull upstream master# 启动本地服务器
hexo server
# 或
npm run server# 新建文章
hexo new 'title'
```4. 发布流程
``` bash
# 生成静态文件(注意:发布前只需要 generate 不需要 deploy)
hexo generate
# 或
npm run build# 推到个人项目远程
git push origin master
```5. 向主项目发起 pull request