Skip to content

Commit

Permalink
feat(docs-website): Added initial code for documentation website
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Dec 24, 2023
1 parent eab9b78 commit 6dbcaa7
Show file tree
Hide file tree
Showing 25 changed files with 3,787 additions and 1,823 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ STORM_BRANCH="main"
STORM_PRE_MAJOR=false

INFISICAL_ENVIRONMENT="prod"
NODE_ENV="production"

READINESS_CHECK_PATH="/readiness"
HEALTH_CHECK_PATH="/healthcheck"
Expand Down
3 changes: 3 additions & 0 deletions assets/logos/storm.favicon-16x16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions assets/logos/storm.favicon.ico
Git LFS file not shown
246 changes: 246 additions & 0 deletions docs/website/README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions docs/website/app/api/hello/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { NextRequest, NextResponse } from "next/server";

export async function GET(request: NextRequest) {
return new NextResponse("Hello, from API!");
}

0 comments on commit 6dbcaa7

Please sign in to comment.