Add example environment configuration file#5060
Open
RitikaSen27 wants to merge 1 commit into
Open
Conversation
Add .env.example for easier environment setup
RishabhJain2018
added a commit
that referenced
this pull request
Apr 19, 2026
…gration to GitHub Actions for CI/CD. Adjust Dockerfile and deployment scripts to support new environment variables and improve deployment processes. Update karma configuration to support multiple CI providers. (#5060)
RishabhJain2018
added a commit
that referenced
this pull request
Apr 19, 2026
* Remove Travis CI configuration and update documentation to reflect migration to GitHub Actions for CI/CD. Adjust Dockerfile and deployment scripts to support new environment variables and improve deployment processes. Update karma configuration to support multiple CI providers. (#5060) * Refactor GitHub Actions workflow: Replace manual Docker Hub authentication with docker/login-action for improved security and simplicity. Ensure credentials are only used when available, enhancing the CI/CD process. (#5061) * Update GitHub Actions workflow: Enhance Docker Hub authentication by using environment variables for credentials, ensuring authentication is only attempted when secrets are configured. Add CODECOV_TOKEN for Codecov uploads, improving coverage reporting. (#5062) * Update GitHub Actions workflow: Enable Codecov uploads using GitHub OIDC for authentication, eliminating the need for CODECOV_TOKEN. This enhances security and simplifies the coverage reporting process. (#5063)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add .env.example for easier environment setup
Description
This PR adds a
.env.examplefile to the repository to help new contributors understand the required environment variables needed for running EvalAI locally.Currently, new developers may find it difficult to identify all necessary configuration variables during setup. Providing a template
.env.examplefile makes the setup process clearer and improves the developer onboarding experience.Changes Made
.env.examplewith commonly required environment variables.Impact
This change improves the project documentation and makes it easier for new contributors to set up the project locally.