Skip to content

Commit 4933788

Browse files
authored
docs: add coco v0.3.0 (#18)
* docs: add coco v0.3.0 * chore: version * docs: change coco-v0.3 title
1 parent 1391c68 commit 4933788

File tree

12 files changed

+203
-1
lines changed

12 files changed

+203
-1
lines changed

README.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# INFINI Labs Blog
2+
3+
Official blog repository for INFINI Labs, built with Hugo.
4+
5+
## Quick Start
6+
7+
### Prerequisites
8+
9+
- Node.js (v18.16.1 or higher)
10+
- Hugo (v0.139.2 or higher)
11+
- Go (v1.23.3 or higher)
12+
- pnpm (latest version)
13+
14+
### Local Development
15+
16+
1. Clone the repository
17+
18+
```bash
19+
git clone https://github.com/infinilabs/blog.git
20+
21+
cd blog
22+
```
23+
24+
2. Install dependencies
25+
26+
```bash
27+
npm install -g pnpm
28+
29+
pnpm install
30+
```
31+
32+
3. Start development server
33+
34+
```bash
35+
pnpm dev
36+
```
37+
38+
Visit http://localhost:1313 to view the blog.
39+
40+
### Creating New Posts
41+
42+
Create a new post using:
43+
44+
```bash
45+
hugo new content/chinese/posts/your-post-name.md
46+
# or for English posts
47+
hugo new content/english/posts/your-post-name.md
48+
```
49+
50+
### Building
51+
52+
Build for production:
53+
54+
```bash
55+
pnpm build
56+
```
57+
58+
## Project Structure
59+
60+
```
61+
.
62+
├── content/ # Blog content
63+
│ └── english/ # English articles
64+
├── assets/ # Source assets (images, SCSS, JS, etc.)
65+
├── static/ # Static assets
66+
├── themes/ # Theme files
67+
└── config.toml # Hugo configuration
68+
```
69+
70+
## Contributing
71+
72+
1. Fork the repository
73+
2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
74+
3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
75+
4. Push to the branch (`git push origin feature/AmazingFeature`)
76+
5. Open a Pull Request
77+
78+
## License
79+
80+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details
81+
82+
## Contact
83+
84+
- Website: https://infinilabs.com
85+
- GitHub: https://github.com/infinilabs
86+
87+
🎉 🎉 Exciting news from INFINI Labs! We've officially open-sourced our products on GitHub. 👉 Check it out here: http://github.com/infinilabs
101 KB
Loading
35.2 KB
Loading
18.1 KB
Loading
30.4 KB
Loading
20 KB
Loading
21.1 KB
Loading
18.8 KB
Loading
36.7 KB
Loading
22.2 KB
Loading

0 commit comments

Comments
 (0)