Skip to content

Commit

Permalink
fix: naming agentkit
Browse files Browse the repository at this point in the history
  • Loading branch information
drivian committed Feb 2, 2024
1 parent b7dfcf2 commit e4af244
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ NEXTAUTH_URL="http://localhost:3000" # Add the url as in the FE .env file
#############################################
# FastAPI environment variables
#############################################
PROJECT_NAME=agent-x
PROJECT_NAME=agentkit
ENCRYPT_KEY=TshgGacKPYrm35m89UqbRg46JAbUm2yRtxOCQFdqa3w=
SECRET_KEY=09d25e0sas4faa6c52gf6c818166b7a9563b93f7sdsdef6f0f4caa6cf63b88e8d3e7
BACKEND_CORS_ORIGINS='["*"]' # The origins that are allowed to make cross-origin requests to your FastAPI backend.
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml.disabled
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Example of CI/CD pushing your images to artifactory.
# name: agent-x-app
# name: agentkit-app
# on:
# # Trigger the workflow on push or pull request,
# # but only for the master branch
Expand Down Expand Up @@ -35,14 +35,14 @@
# with:
# context: ./backend
# push: true
# tags: artifactoryyourdomain.jfrog.io/your-repository/agent-x-app-backend:latest
# tags: artifactoryyourdomain.jfrog.io/your-repository/agentkit-app-backend:latest

# - name: Build and push Docker image Frontend
# uses: docker/build-push-action@v3
# with:
# context: ./frontend
# push: true
# tags: artifactoryyourdomain.jfrog.io/your-repository/agent-x-app-frontend:latest
# tags: artifactoryyourdomain.jfrog.io/your-repository/agentkit-app-frontend:latest
# build-args: |
# GITHUB_ID=${{ secrets.OAUTH_GITHUB_ID }}
# GITHUB_SECRET=${{ secrets.OAUTH_GITHUB_SECRET }}
Expand Down Expand Up @@ -75,14 +75,14 @@
# with:
# context: ./backend
# push: true
# tags: artifactoryyourdomain.jfrog.io/your-repository/agent-x-app-backend-staging:latest
# tags: artifactoryyourdomain.jfrog.io/your-repository/agentkit-app-backend-staging:latest

# - name: Build and push Docker image Frontend Staging
# uses: docker/build-push-action@v3
# with:
# context: ./frontend
# push: true
# tags: artifactoryyourdomain.jfrog.io/your-repository/agent-x-app-frontend-staging:latest
# tags: artifactoryyourdomain.jfrog.io/your-repository/agentkit-app-frontend-staging:latest
# build-args: |
# GITHUB_ID=${{ secrets.OAUTH_GITHUB_ID }}
# GITHUB_SECRET=${{ secrets.OAUTH_GITHUB_SECRET }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pre-commit:
# CREATING THE ENVIRONMENT #
##############################################################################################
PYTHON = python3.10
PROJECT_NAME = Agent-X
PROJECT_NAME = AgentKit
APP_FOLDER = backend/app
SOURCE_FOLDER = app

Expand Down
2 changes: 1 addition & 1 deletion backend/app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use_parentheses = true
[tool.poetry]
authors = ["jheyder <heyder.jakob@bcg.com>"]
description = "Starter-kit to build constrained agents with Nextjs and FastAPI"
name = "agent-x"
name = "agentkit"
packages = [
{ include = "app" },
{ include = "tests" },
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "agent-x",
"name": "agentkit",
"version": "1.0.0",
"private": true,
"engines": {
Expand Down

0 comments on commit e4af244

Please sign in to comment.