Skip to content

set up next.js app and static build #157

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f5fde81
set up next.js app and static build
DaltheCow May 9, 2025
fa5db74
convert to .eslintrc to match current state of project
DaltheCow May 9, 2025
f7837ca
update file type
DaltheCow May 12, 2025
50a39ec
sort eslintrc
DaltheCow May 13, 2025
119f05a
sort extensions
DaltheCow May 13, 2025
a515e12
resort
DaltheCow May 13, 2025
35a0726
Merge branch 'main' into implement-base-ui-app
DaltheCow May 20, 2025
8413655
run linting
DaltheCow May 20, 2025
c23c674
replace speculators with GuideLLM
DaltheCow May 21, 2025
1d5bd73
remove speculators from docs
DaltheCow May 21, 2025
43fdeb0
update tox.ini to exclude github view files (blobs) that break the li…
DaltheCow May 21, 2025
1e29968
not to ignore more than markdown for rich display mode
DaltheCow May 21, 2025
d09f685
Merge branch 'update-docs' into implement-base-ui-app
DaltheCow May 21, 2025
247d1cf
undo alteration of link checks, instead remove from workflows tempora…
DaltheCow May 22, 2025
4de602a
Merge branch 'update-docs' into implement-base-ui-app
DaltheCow May 22, 2025
57e5c0a
Merge branch 'main' into implement-base-ui-app
DaltheCow May 27, 2025
aece79d
Merge branch 'main' into implement-base-ui-app
markurtz May 29, 2025
9ba8262
Update ui/src/app/page.tsx
DaltheCow May 29, 2025
bc08e33
Update ui/package.json
DaltheCow May 29, 2025
c58197e
Update ui/src/app/layout.tsx
DaltheCow May 29, 2025
8811a2a
move some configs to root, move /ui to src/ui
DaltheCow May 30, 2025
7f536c7
update versions
DaltheCow May 30, 2025
382118d
move tsconfig.json back down as next.js requires one with the source …
DaltheCow May 30, 2025
07b4029
move tsconfig.json and .eslint.json back to src/ui
DaltheCow May 30, 2025
4f30a31
remove .next dir at root I forgot was generated
DaltheCow May 30, 2025
9f753f9
remove src directory
DaltheCow May 30, 2025
e5f507d
add lint back since it was unecessary to ever remove it
DaltheCow May 30, 2025
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
44 changes: 44 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,47 @@ cython_debug/
# Project specific files
*.json
*.yaml


# UI Section - Next.js/React application under src/ui/
# dependencies
/node_modules/
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
coverage/

# next.js
/src/ui/.next/
/src/ui/out/

# production
build/

# misc
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# vercel
src/ui/.vercel

# typescript
src/ui/*.tsbuildinfo
src/ui/next-env.d.ts

# Root-level UI config files that should be tracked
!package.json
!package-lock.json
!.eslintrc.json
!tsconfig.json
Loading