Skip to content

Commit ee128e0

Browse files
committed
Web Documentation - 2025-11-27 [1]
1 parent 9aec86e commit ee128e0

File tree

13 files changed

+214
-0
lines changed

13 files changed

+214
-0
lines changed

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ yarn-error.*
4343

4444
# do NOT publish your dev template script
4545
scripts/setup.js
46+
docs/

docs/_config.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
title: Coderooz Expo Template
2+
description: A production-ready Expo starter for real business apps
3+
theme: jekyll-theme-primer
4+
markdown: GFM
5+
logo: /assets/logo.svg
6+
show_downloads: true
7+
google_analytics:
8+
nav:
9+
- Home: index.md
10+
- Quick Start: getting-started.md
11+
- Features: features.md
12+
- UI Components: ui-components.md
13+
- API: api-integration.md
14+
- CLI: cli-commands.md
15+
- Changelog: changelog.md

docs/_layouts/default.html

Whitespace-only changes.

docs/_layouts/page.html

Whitespace-only changes.

docs/_sidebar.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Getting Started
2+
- [Introduction](/)
3+
- [Installation](/guide/installation)

docs/api-integration.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# API Integration Guide
2+
3+
Use `src/lib/api.ts` as base:
4+
5+
```ts
6+
export const api = {
7+
get: async (url: string) => fetch(url).then(res => res.json()),
8+
post: async (url: string, data: any) =>
9+
fetch(url, { method: "POST", body: JSON.stringify(data) }),
10+
};
11+
````
12+
13+
Use with hooks:
14+
15+
```ts
16+
import { api } from "@/lib/api";
17+
18+
const users = await api.get("/users");
19+
```

docs/assets/style.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
:root {
2+
--brand: #2563eb;
3+
}
4+
5+
h1, h2, h3, h4 {
6+
color: var(--brand);
7+
font-weight: 700;
8+
}

docs/changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Changelog
2+
3+
## 1.0.0 — Initial Release
4+
- First launch of Coderooz Expo Template docs

docs/cli-commands.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# CLI Commands
2+
3+
| Command | Action |
4+
|--------|--------|
5+
| `npm start` | Run expo dev server |
6+
| `npm run android` | Run Android build |
7+
| `npx expo lint` | Check lint issues |
8+
| `npm version patch` | Bump version |
9+
10+
Release workflow auto-publishes new docs.

docs/features.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Template Features
2+
3+
| Category | Details |
4+
|---------|---------|
5+
| UI | NativeWind, Icons System, KPIs |
6+
| Auth | Context & storage system |
7+
| Navigation | Stack + Bottom Tabs |
8+
| Tools | Linting + Prettier + Metro configured |
9+
| Productivity | Prebuilt reusable screens |
10+
11+
----
12+
13+
- Push Notification provider included
14+
- Theming via `Colors` + `Typography`
15+
- Expo Router-ready structure

0 commit comments

Comments
 (0)