Add database schema, migration scripts, and API integration for Pokémon data#16
Open
RurikV wants to merge 9 commits intoClojure-Developer:mainfrom
Open
Add database schema, migration scripts, and API integration for Pokémon data#16RurikV wants to merge 9 commits intoClojure-Developer:mainfrom
RurikV wants to merge 9 commits intoClojure-Developer:mainfrom
Conversation
…ter confirming it's working properly, proceed to a multi-threaded approach. Add access log test data and implement unit tests for solution metrics - Created a new access log test file with extensive log entries for testing. - Implemented a Clojure test suite to validate the functionality of the solution. - Tests include calculations for total bytes, filtering by URL and referrer, and handling non-existent entries.
…dling Fetches Pokemon data asynchronously Implements asynchronous fetching of Pokémon types and details to improve performance. Adds error handling to gracefully manage potential API failures during data retrieval.
…on data Adds Pokemon API integration and database support Introduces asynchronous interaction with the Pokemon API to retrieve and process data. Implements database schema and migration scripts for storing Pokemon data in Postgres. Includes libraries for database interaction, migrations, and query construction. Provides instructions for setting up the database, applying migrations, loading data, and executing queries.
… associations in tests
Fixes Pokémon ID retrieval for associations Ensures correct Pokémon ID is used when associating Pokémon with types. This resolves an issue where associations were failing after loading Pokémon data for the first time.
Updated various functions to utilize asynchronous channels for data fetching using `core.async`. This refactor improves non-blocking operations, error handling, and scalability for fetching Pokémon and type details.
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.
Adds Pokemon API integration and database support
Introduces asynchronous interaction with the Pokemon API to retrieve and process data.
Implements database schema and migration scripts for storing Pokemon data in Postgres.
Includes libraries for database interaction, migrations, and query construction.
Provides instructions for setting up the database, applying migrations, loading data, and executing queries.