Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/docker-readme-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ jobs:
check "Sign-in page" "http://localhost:3000/auth/sign-in" "200"
check "Sign-up page" "http://localhost:3000/auth/sign-up" "200"
check "Public job board" "http://localhost:3000/jobs" "200"
check "Blog index" "http://localhost:3000/blog" "200"
check "API/jobs (no auth→401)" "http://localhost:3000/api/jobs" "401"
check "API/candidates (no auth)" "http://localhost:3000/api/candidates" "401"

Expand Down
3 changes: 0 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ RUN addgroup -S reqcore && adduser -S reqcore -G reqcore
# .output is fully self-contained (server, public assets)
COPY --chown=reqcore:reqcore --from=builder /app/.output ./.output

# @nuxt/content SQLite database — built during `npm run build`, stored outside .output
COPY --chown=reqcore:reqcore --from=builder /app/.data ./.data

# Drizzle migrations are loaded at runtime via a relative path ("./server/database/migrations")
# They must live alongside .output so the path resolves correctly inside the container
COPY --chown=reqcore:reqcore --from=builder /app/server/database/migrations ./server/database/migrations
Expand Down
440 changes: 0 additions & 440 deletions TOPICAL-AUTHORITY-MAP.md

This file was deleted.

54 changes: 0 additions & 54 deletions app/components/GiscusComments.vue

This file was deleted.

28 changes: 0 additions & 28 deletions app/components/PublicNavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,41 +31,13 @@ const { data: session } = await authClient.useSession(useFetch)

<!-- Center nav links (desktop) -->
<div class="hidden items-center gap-1 md:flex">
<NuxtLink
:to="localePath('/catalog')"
class="rounded-md px-3 py-1.5 text-[13px] font-medium transition"
:class="activePage === 'features' ? 'text-white' : 'text-surface-400 hover:text-white'"
>
Features
</NuxtLink>
<NuxtLink
:to="localePath('/jobs')"
class="rounded-md px-3 py-1.5 text-[13px] font-medium transition"
:class="activePage === 'jobs' ? 'text-white' : 'text-surface-400 hover:text-white'"
>
Open Positions
</NuxtLink>
<NuxtLink
:to="localePath('/roadmap')"
class="rounded-md px-3 py-1.5 text-[13px] font-medium transition"
:class="activePage === 'roadmap' ? 'text-white' : 'text-surface-400 hover:text-white'"
>
Roadmap
</NuxtLink>
<NuxtLink
to="/blog"
class="rounded-md px-3 py-1.5 text-[13px] font-medium transition"
:class="activePage === 'blog' ? 'text-white' : 'text-surface-400 hover:text-white'"
>
Blog
</NuxtLink>
<NuxtLink
to="/docs"
class="rounded-md px-3 py-1.5 text-[13px] font-medium transition"
:class="activePage === 'docs' ? 'text-white' : 'text-surface-400 hover:text-white'"
>
Docs
</NuxtLink>
<a
href="https://github.com/reqcore-inc/reqcore"
target="_blank"
Expand Down
158 changes: 0 additions & 158 deletions app/pages/blog/[...slug].vue

This file was deleted.

Loading
Loading