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

daily build Docker/2025/03/24 #57

Merged
merged 0 commits into from
Mar 24, 2025
Merged

Conversation

jmikedupont2
Copy link
Member

Daily docker build

process.env.AGENT_RUNTIME_URL?.replace(/\/$/, '') ||
`http://localhost:${process.env.SERVER_PORT}`;
const AGENTS_BASE_URL = `${AGENT_RUNTIME_URL}/api/agents`;
process.env.AGENT_RUNTIME_URL?.replace(/\/$/, '') || 'http://192.168.1.90:3000';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line is a statement without assignment, making it dead code. The result of the expression is not stored or used, and AGENT_RUNTIME_URL is undefined in the next line's usage.

`http://localhost:${process.env.SERVER_PORT}`;
const AGENTS_BASE_URL = `${AGENT_RUNTIME_URL}/api/agents`;
process.env.AGENT_RUNTIME_URL?.replace(/\/$/, '') || 'http://192.168.1.90:3000';
const AGENTS_BASE_URL = `${AGENT_RUNTIME_URL}/agents`;
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AGENT_RUNTIME_URL is used but not defined. The previous line's result is not assigned to any variable, causing a runtime error when trying to use undefined AGENT_RUNTIME_URL.

@@ -323,7 +323,7 @@ export const create = new Command()
logger.info(`\nYour project is ready! Here's what you can do next:
1. \`cd ${cdPath}\` to change into your project directory
2. Run \`npx elizaos start\` to start your project
3. Visit \`http://localhost:3000\` (or your custom port) to view your project in the browser`);
3. Visit \`http://192.168.1.90:3000\` (or your custom port) to view your project in the browser`);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hardcoding a specific IP address is problematic as it assumes network configuration and won't work across different environments. Should use localhost or dynamic IP detection.

@@ -173,7 +173,7 @@ async function listEnvVars(): Promise<void> {
logger.info('\n');
logger.info(
colors.cyan(
'You can also edit environment variables in the web UI: http://localhost:3000/settings'
'You can also edit environment variables in the web UI: http://192.168.1.90:3000/settings'
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hardcoding specific IP addresses creates maintenance issues and reduces portability. The URL should be configurable through environment variables or configuration files to support different environments.

@@ -43,7 +43,7 @@ export interface ServerOptions {
postgresUrl?: string;
}
const AGENT_RUNTIME_URL =
process.env.AGENT_RUNTIME_URL?.replace(/\/$/, '') || 'http://localhost:3000';
process.env.AGENT_RUNTIME_URL?.replace(/\/$/, '') || 'http://192.168.1.90:3000';
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hardcoding specific IP addresses in the codebase creates maintenance issues and reduces portability. This should be configurable through environment variables or configuration files.

@jmikedupont2 jmikedupont2 force-pushed the docker/2025/03/24 branch 2 times, most recently from bc1a47d to 16afd46 Compare March 24, 2025 14:08
Comment on lines 47 to 48
const result = await promptForProjectPlugins(mockProject);
// Add assertions based on expected behavior
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test case is incomplete without assertions. Missing verification of the function's behavior makes the test ineffective and potentially misleading for future developers.

Comment on lines 57 to 58
const result = await promptForProjectPlugins(singleAgentProject);
// Add assertions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Test case lacks assertions to verify the behavior with single agent format. Without assertions, the test provides no value in ensuring correct functionality.

Comment on lines 63 to 64
const result = await promptForProjectPlugins(emptyProject);
// Add assertions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Empty project test case has no assertions, making it impossible to verify if the function handles empty projects correctly. Test is essentially non-functional.

Copy link

trag-bot bot commented Mar 24, 2025

@trag-bot didn't find any issues in the code! ✅✨

Copy link

trag-bot bot commented Mar 24, 2025

Pull request summary

  • Updated .dockerignore to include .env file to prevent it from being included in Docker builds.
  • Added new environment variables in .env.example for additional API keys related to GROQ models.
  • Changed the model version in the GitHub Actions workflow for generating README translations from gpt-4o to gpt-422222o.
  • Modified the Docker image build workflow to trigger on pushes to specific branches, enhancing the CI/CD process.
  • Introduced a new workflow for generating documentation using Repomix, allowing for more automated documentation updates.
  • Refactored the PR title check workflow to use workflow_dispatch, enabling manual triggering.
  • Updated the CI workflow to allow manual dispatch and removed specific branch triggers for builds.
  • Created a new workflow for testing Docker images, ensuring that Docker images can be built and pushed correctly.
  • Enhanced the .gitignore file to exclude additional temporary and configuration files.
  • Added submodule configurations for various plugins in the .gitmodules file, facilitating easier management of dependencies.

@jmikedupont2 jmikedupont2 merged commit 85350a1 into feature/v2/telegram Mar 24, 2025
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant