You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(feed-directory): load catalog from instance API (#1240)
* feat(feed-directory): load catalog from instance API
* chore: drop unused Ruby toolchain from docs site
Remove Gemfile, lockfile, and RuboCop config now that the feed
directory is npm-only, and simplify CI/dependabot accordingly.
Copy file name to clipboardExpand all lines: README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,35 +8,34 @@ website.
8
8
### Prerequisites
9
9
10
10
- Node.js (for Astro)
11
-
- Ruby (for data updates)
12
11
13
12
### Quick Setup
14
13
15
14
```bash
16
-
# Install dependencies and refresh generated feed data
15
+
# Install dependencies
17
16
make setup
18
17
19
18
# Start the local Astro development server
20
19
make dev
21
20
```
22
21
22
+
Feed Directory browse data comes from a running `html2rss-web` instance (`GET /api/v1/configs`). For local feed-directory testing, run an instance (for example from `html2rss-web`) and point the directory UI at it.
23
+
23
24
### 💻 Try in Browser
24
25
25
26
You can develop html2rss directly in your browser using GitHub Codespaces:
26
27
27
28
[Open in GitHub Codespaces](https://github.com/codespaces/new?repo=html2rss/html2rss.github.io)
28
29
29
-
The Codespace provides a cloud development environment with Node.js and Ruby pre-installed. Run `make setup` to install dependencies and get started!
30
+
The Codespace provides a cloud development environment with Node.js pre-installed. Run `make setup` to install dependencies and get started!
30
31
31
32
### Available Commands
32
33
33
-
-`make setup` - Install dependencies and refresh generated feed data
34
+
-`make setup` - Install npm dependencies
34
35
-`make dev` - Start Astro development server
35
36
-`make build` - Build for production
36
37
-`make preview` - Preview production build
37
-
-`make build-full` - Update data and build for production
0 commit comments