Merged
Conversation
…and improve project cleanliness.
This update introduces a new section detailing how to create and use custom devnet configurations for testing environments. It includes step-by-step instructions and an example configuration for setting up nodes, enabling additional services, and configuring parameters for Assertoor.
Updated task labels and commands in .vscode/tasks.json to improve clarity and functionality. Renamed "kurtosis-cleanup" to "kurtosis-stop" and separated the stop and remove commands into distinct tasks, ensuring that both commands handle errors gracefully with "|| true". This enhances the build process and task management.
Modified the launch configuration in .vscode/launch.json to specify the main Go program file directly. Additionally, removed obsolete parameters from .vscode/README.md to streamline the documentation and focus on relevant configuration details.
This update introduces a comprehensive section on creating and managing custom Assertoor configurations within the devnet setup. It details the configuration process, provides an example YAML file, and outlines common customizations, ensuring users can effectively override or extend default settings for their testing environments.
…or Go assertoor Renamed the existing debug configuration to "Clean debug Go assertoor" and added a new configuration for debugging the main Go program. This enhances the development experience by providing clearer options for debugging.
…tosis CLI, yq, and PostgreSQL Client. This enhances setup guidance for users by providing detailed platform-specific installation commands.
Modified the database settings in README.md to switch from PostgreSQL to SQLite, reflecting the new default configuration. Updated tasks.json to rename the PostgreSQL cleanup task and added a new SQLite cleanup task, enhancing the development workflow for users working with SQLite databases.
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.
Feat/go debug
This pull request introduces several improvements to the project, including updates to debugging configurations, dependency management, and infrastructure setup. Key changes are:
.gitignore Update:
.hack/devnet/sqlite.db**to the.gitignorefile to prevent SQLite database files from being tracked in the repository.VSCode Configuration Files:
README.mdin the.vscodefolder, providing detailed instructions for configuring and using the VSCode debugger with Assertoor, including dependencies (Go, Docker, Kurtosis CLI, yq, PostgreSQL Client).launch.jsonto configure debugging options for the Go Assertoor project, with configurations for both clean and standard debug sessions.tasks.jsonto define various tasks needed for the development setup, such as stopping and removing Kurtosis enclaves, cleaning databases, and running the devnet setup.Go Module Dependencies:
pgx/v5as a PostgreSQL driver dependency for the Go project.go.modandgo.sumfiles to include new dependencies related to PostgreSQL, such aspgx,pgpassfile,pgservicefile, andpuddle.Database Support:
pgx) in thecommon.gofile, enhancing database interaction with a more robust driver for PostgreSQL databases.These changes streamline the development and debugging setup, improve database handling, and ensure that temporary files and configurations are not accidentally committed to the repository.