Skip to content
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

Login and Navbar #10

Draft
wants to merge 3 commits into
base: feature/add-design-tokens
Choose a base branch
from
Draft
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
11 changes: 5 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
env:
APP_TITLE: ${{ vars.APP_TITLE }}
APP_GRAPHQL_CODEGEN_ENDPOINT: ${{ vars.APP_GRAPHQL_CODEGEN_ENDPOINT }}
APP_GRAPHQL_ENDPOINT: ${{ vars.APP_GRAPHQL_ENDPOINT }}
GITHUB_WORKFLOW: true

jobs:
Expand All @@ -17,8 +18,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true

- uses: pnpm/action-setup@v4
name: Install pnpm
Expand Down Expand Up @@ -56,7 +55,7 @@ jobs:
run: pnpm install

- name: Run knip
run: pnpm lint:unused
run: pnpm generate:type && pnpm lint:unused
lint-js:
name: Lint JS
environment: 'test'
Expand All @@ -79,7 +78,7 @@ jobs:
run: pnpm install

- name: Lint Javascript
run: pnpm lint:js
run: pnpm generate:type && pnpm lint:js
css-lint:
name: Lint CSS
environment: 'test'
Expand Down Expand Up @@ -123,7 +122,7 @@ jobs:
run: pnpm install

- name: Lint Javascript
run: pnpm typecheck
run: pnpm generate:type && pnpm typecheck
build:
name: Build
environment: 'test'
Expand All @@ -147,4 +146,4 @@ jobs:
run: pnpm install

- name: Build
run: pnpm build
run: pnpm generate:type && pnpm build
2 changes: 1 addition & 1 deletion backend
Submodule backend updated 48 files
+68 −10 .github/workflows/ci.yml
+75 −0 .github/workflows/helm-publish.yml
+3 −0 .gitignore
+1 −1 .python-version
+3 −2 Dockerfile
+1 −1 chatbotcore/custom_embeddings.py
+0 −1 chatbotcore/database.py
+1 −1 chatbotcore/doc_loaders.py
+9 −8 chatbotcore/llm.py
+0 −0 chatbotcore/utils.py
+0 −0 common/utils.py
+11 −0 content/enums.py
+1 −1 content/migrations/0002_alter_content_document_type.py
+7 −3 content/models.py
+18 −0 content/queries.py
+6 −0 content/serializers.py
+38 −0 content/tasks.py
+22 −0 content/types.py
+18 −0 content/views.py
+69 −28 docker-compose.yml
+4 −3 gh-docker-compose.yml
+7 −0 helm/Chart.yaml
+34 −0 helm/templates/_helpers.tpl
+57 −0 helm/templates/api/deployment.yaml
+26 −0 helm/templates/api/ingress.yaml
+24 −0 helm/templates/api/service.yaml
+46 −0 helm/templates/config/configmap.yaml
+21 −0 helm/templates/config/secret.yaml
+41 −0 helm/templates/redis/deployment.yaml
+24 −0 helm/templates/redis/service.yaml
+57 −0 helm/templates/streamlit/deployment.yaml
+26 −0 helm/templates/streamlit/ingress.yaml
+24 −0 helm/templates/streamlit/service.yaml
+48 −0 helm/templates/worker/deployment.yaml
+38 −0 helm/values-test.yaml
+109 −0 helm/values.yaml
+3 −0 main/__init__.py
+13 −0 main/celery.py
+2 −0 main/graphql/enums.py
+2 −3 main/graphql/schema.py
+35 −2 main/settings.py
+3 −9 main/urls.py
+259 −9 poetry.lock
+5 −2 pyproject.toml
+7 −0 scripts/run_prod.sh
+3 −0 scripts/run_worker.sh
+1 −19 user/queries.py
+16 −6 user/types.py
2 changes: 1 addition & 1 deletion env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import {

export default defineConfig({
COMPOSE_FILE: Schema.string.optional(),
APP_TITLE: Schema.string(),
APP_TITLE: Schema.string.optional(),
});
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@togglecorp/fujs": "^2.0.0",
"@julr/vite-plugin-validate-env": "^1.1.1",
"@togglecorp/fujs": "^2.0.0",
"@togglecorp/toggle-form": "^2.0.4",
"@togglecorp/toggle-ui": "^0.18.3",
"graphql": "^16.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
Loading