[READ-ONLY] Mirror of https://github.com/just-cameron/comind. Comind, the cognitive layer for the web. comind.stream/docs/getting-started/
ai atprotocol
0

Configure Feed

Select the types of activity you want to include in your feed.

Add initial project configuration files including .gitignore, Hugo config, Go module files, and a basic index content file.

+73
+2
.gitignore
··· 1 + public/ 2 + .hugo_build.lock
+56
config.yaml
··· 1 + # Hugo configuration file 2 + title: My Site 3 + 4 + # import hextra as module 5 + module: 6 + imports: 7 + - path: github.com/imfing/hextra 8 + 9 + markup: 10 + # allow raw html 11 + goldmark: 12 + renderer: 13 + unsafe: true 14 + 15 + # enable hextra syntax highlight 16 + highlight: 17 + noClasses: false 18 + 19 + menu: 20 + main: 21 + - name: Docs 22 + pageRef: /docs 23 + weight: 1 24 + - name: About 25 + pageRef: /about 26 + weight: 2 27 + - name: Contact ↗ 28 + url: "https://github.com/imfing" 29 + weight: 3 30 + - name: Search 31 + weight: 4 32 + params: 33 + type: search 34 + - name: GitHub 35 + weight: 5 36 + url: "https://github.com/imfing/hextra-starter-template" 37 + params: 38 + icon: github 39 + - name: Twitter 40 + weight: 6 41 + url: "https://twitter.com/" 42 + params: 43 + icon: x-twitter 44 + 45 + params: 46 + navbar: 47 + displayTitle: true 48 + displayLogo: false 49 + 50 + footer: 51 + displayCopyright: false 52 + displayPoweredBy: true 53 + 54 + editURL: 55 + enable: true 56 + base: "https://github.com/imfing/hextra-starter-template/edit/main/content"
+8
content/_index.md
··· 1 + --- 2 + title: "" 3 + date: 2025-03-28T17:23:18-07:00 4 + toc: false 5 + draft: false 6 + --- 7 + 8 + Hey, I'm a software engineer. I'm currently the CTO of [Comind](https://comind.me), a startup that builds AI-powered tools for the web.
+5
go.mod
··· 1 + module github.com/cpfiffer/comind 2 + 3 + go 1.23.4 4 + 5 + require github.com/imfing/hextra v0.9.7 // indirect
+2
go.sum
··· 1 + github.com/imfing/hextra v0.9.7 h1:Zg5n24us36Bn/S/5mEUPkRW6uwE6vHHEqWSgN0bPXaM= 2 + github.com/imfing/hextra v0.9.7/go.mod h1:cEfel3lU/bSx7lTE/+uuR4GJaphyOyiwNR3PTqFTXpI=