-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* replace go json with encoding/json * state locking to avoid collision in reading StreamState maps * rename project * Renaming project with Gear5
- Loading branch information
1 parent
916f5e3
commit ce68bd1
Showing
72 changed files
with
206 additions
and
206 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
synkit | ||
g5 | ||
.vscode |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Synkit License | ||
Gear5 License | ||
|
||
Version 1.1, 30th June 2023 | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Synkit | ||
# Gear5 | ||
|
||
Synkit is a new data integration protocol and specification, written in Golang, that aims to provide an alternative to existing solutions such as Airbyte, Meltano, and Singer-io. It focuses on simplicity, performance, and extensibility to enable seamless data integration between various systems and applications. | ||
Gear5 is a new data integration protocol and specification, written in Golang, that aims to provide an alternative to existing solutions such as Airbyte, Meltano, and Singer-io. It focuses on simplicity, performance, and extensibility to enable seamless data integration between various systems and applications. | ||
|
||
## Roadmap | ||
- [ ] Postgres | ||
|
@@ -11,33 +11,33 @@ Synkit is a new data integration protocol and specification, written in Golang, | |
|
||
## Getting Started | ||
|
||
To start using Synkit, follow these steps: | ||
To start using Gear5, follow these steps: | ||
|
||
1. **Run Synkit**: Run Synkit driver/adapter images directly with config, catalog, and state files. | ||
2. **Explore the Documentation**: Refer to the documentation for detailed information on how to use Protocol Synkit, including connector setup, data source configuration, and integration examples. | ||
1. **Run Gear5**: Run Gear5 driver/adapter images directly with config, catalog, and state files. | ||
2. **Explore the Documentation**: Refer to the documentation for detailed information on how to use Protocol Gear5, including connector setup, data source configuration, and integration examples. | ||
|
||
## Contributing | ||
|
||
We welcome contributions to Protocol Synkit! If you'd like to contribute, please follow these guidelines: | ||
We welcome contributions to Protocol Gear5! If you'd like to contribute, please follow these guidelines: | ||
|
||
1. Fork the repository and create a new branch for your feature or bug fix. | ||
|
||
2. Commit your changes with descriptive commit messages. | ||
|
||
3. Push your changes to your forked repository. | ||
|
||
4. Submit a pull request to the main Synkit repository, clearly describing the changes you've made and their purpose. | ||
4. Submit a pull request to the main Gear5 repository, clearly describing the changes you've made and their purpose. | ||
|
||
5. Participate in the code review process, addressing any feedback or suggestions. | ||
|
||
## License | ||
|
||
Protocol Synkit is open-source and released under a custom Licence. Please check | ||
Protocol Gear5 is open-source and released under a custom Licence. Please check | ||
|
||
## Contact | ||
|
||
For any questions, feedback, or support related to Synkit, you can reach out to the development team via email at [[email protected]](mailto:[email protected]). | ||
For any questions, feedback, or support related to Gear5, you can reach out to the development team via email at [[email protected]](mailto:[email protected]). | ||
|
||
## Acknowledgments | ||
|
||
We would like to acknowledge the contributions of all individuals and organizations that have helped make Synkit possible. Their feedback, ideas, and suggestions have been invaluable in shaping and improving the protocol. | ||
We would like to acknowledge the contributions of all individuals and organizations that have helped make Gear5 possible. Their feedback, ideas, and suggestions have been invaluable in shaping and improving the protocol. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/piyushsingariya/synkit" | ||
driver "github.com/piyushsingariya/synkit/drivers/google-sheets/internal" | ||
"github.com/gear5sh/gear5" | ||
driver "github.com/gear5sh/gear5/drivers/google-sheets/internal" | ||
) | ||
|
||
func main() { | ||
driver := &driver.GoogleSheets{} | ||
synkit.RegisterDriver(driver) | ||
gear5.RegisterDriver(driver) | ||
Check failure on line 10 in drivers/google-sheets/main.go GitHub Actions / GoSec Security Scanner
|
||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package main | ||
|
||
import ( | ||
"github.com/piyushsingariya/synkit" | ||
driver "github.com/piyushsingariya/synkit/drivers/hubspot/internal" | ||
"github.com/gear5sh/gear5" | ||
driver "github.com/gear5sh/gear5/drivers/hubspot/internal" | ||
) | ||
|
||
func main() { | ||
driver := &driver.Hubspot{} | ||
synkit.RegisterDriver(driver) | ||
gear5.RegisterDriver(driver) | ||
} |
Oops, something went wrong.