https://github.com/khoj-ai/flare
All blog-related pages for Khoj
https://github.com/khoj-ai/flare
ai copilot image-generation knowledgebase personal-ai tech
Last synced: 13 days ago
JSON representation
All blog-related pages for Khoj
- Host: GitHub
- URL: https://github.com/khoj-ai/flare
- Owner: khoj-ai
- Created: 2024-03-02T08:19:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-30T03:53:26.000Z (3 months ago)
- Last Synced: 2025-03-25T17:21:17.401Z (about 1 month ago)
- Topics: ai, copilot, image-generation, knowledgebase, personal-ai, tech
- Language: Astro
- Homepage: https://blog.khoj.dev
- Size: 59.4 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Khoj Blog
This was built with [astro](https://astro.build) and is based on the [Bear Blog](https://github.com/HermanMartinus/bearblog/) theme.
```sh
npm create astro@latest -- --template blog
```## 🚀 Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
├── public/
├── src/
│  ├── components/
│  ├── content/
│  ├── layouts/
│  └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json
```Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
The `src/content/` directory contains "collections" of related Markdown and MDX documents. Use `getCollection()` to retrieve posts from `src/content/blog/`, and type-check your frontmatter using an optional schema. See [Astro's Content Collections docs](https://docs.astro.build/en/guides/content-collections/) to learn more.
Any static assets, like images, can be placed in the `public/` directory.
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `yarn install` | Installs dependencies |
| `yarn dev` | Starts local dev server at `localhost:4321` |
| `yarn build` | Build your production site to `./dist/` |
| `yarn preview` | Preview your build locally, before deploying |
| `yarn astro ...` | Run CLI commands like `astro add`, `astro check` |
| `yarn astro -- --help` | Get help using the Astro CLI |