-
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.
Merge pull request #359 from TaloDev/develop
Release 0.49.0
- Loading branch information
Showing
12 changed files
with
212 additions
and
36 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,32 +1,41 @@ | ||
# Talo backend | ||
# Talo backend: self-hostable game dev tools | ||
|
||
Talo's backend is a set of self-hostable services that helps you build games faster and make better decisions. | ||
Talo is a collection of tools and APIs designed to make game development easier and to help you make better data-driven decisions. | ||
|
||
## Features | ||
- ⚡️ [Event tracking](https://trytalo.com/events) | ||
- 👥 [Player management](https://trytalo.com/players) (including cross-session data, groups and identity management) | ||
- 🎮 [Unity package](https://trytalo.com/unity) | ||
- 🎮 [Godot plugin](https://trytalo.com/godot) | ||
- 🗃️ Data exports | ||
- 🕹️ [Leaderboards](https://trytalo.com/leaderboards) | ||
- 💾 [Game saves](https://trytalo.com/saves) | ||
- 📊 [Game stats](https://trytalo.com/stats) (global and per-player) | ||
- ⚙️ [Live config](https://trytalo.com/live-config) (update your game config from the web, no releases required) | ||
- 🔧 [Steamworks integration](https://trytalo.com/steamworks-integration) | ||
- 💬 [Game feedback](https://trytalo.com/feedback) | ||
From essentials like player management, stats and leaderboards to advanced APIs for game saves, event tracking and player authentication. | ||
|
||
## Docs | ||
Talo is available to use via our [Godot plugin](https://github.com/TaloDev/godot), [Unity package](https://github.com/TaloDev/unity) or [REST API](https://docs.trytalo.com/docs/http/authentication). | ||
|
||
Our docs are [available here](https://docs.trytalo.com). | ||
## Talo's key features | ||
|
||
## Self-hosting | ||
- 👥 [Player management](https://trytalo.com/players): Persist player data across sessions, create segments and handle authentication. | ||
- ⚡️ [Event tracking](https://trytalo.com/events): Track in-game player actions individually and globally. | ||
- 🎮 [Godot plugin](https://trytalo.com/godot): Easily integrate Talo into your Godot game. | ||
- 🎮 [Unity package](https://trytalo.com/unity): Easily integrate Talo into your Unity game. | ||
- 🗃️ **Data Exports**: Create CSVs of your Talo data like players, events and feedback. | ||
- 🕹️ [Leaderboards](https://trytalo.com/leaderboards): Highly customisable leaderboards that can sync with Steamworks. | ||
- 💾 [Game saves](https://trytalo.com/saves): A simple and flexible way to load/save game state; also works offline. | ||
- 📊 [Game stats](https://trytalo.com/stats): Track global or per-player stats across your game; also syncs with Steamworks. | ||
- ⚙️ [Live config](https://trytalo.com/live-config): Update game settings from the web with zero downtime. | ||
- 🔧 [Steamworks integration](https://trytalo.com/steamworks-integration): Hook into Steamworks for authentication and ownership checks. | ||
- 💬 [Game feedback](https://trytalo.com/feedback): Collect and manage feedback from your players. | ||
|
||
See the [self-hosting docs](https://docs.trytalo.com/docs/selfhosting/overview) and the [self-hosting example repo](https://github.com/TaloDev/hosting). | ||
## Documentation | ||
|
||
## Contributing | ||
Check out the [full Talo docs](https://docs.trytalo.com) for setup instructions, detailed API docs/examples and configuration options. | ||
|
||
Looking to contribute? Head over to our [contribution guide](CONTRIBUTING.md) to learn how to install the project, run the tests and generate new services. | ||
## Self-hosting your own Talo instance | ||
|
||
## Discord | ||
Talo is designed to be easily self-hosted. Take a look at our [self-hosting guide](https://docs.trytalo.com/docs/selfhosting/overview) and the [GitHub repo](https://github.com/TaloDev/hosting) for examples on how to get started. | ||
|
||
For help and support, [join our Discord](https://discord.gg/2RWwxXVY3v). | ||
## Contributing to Talo | ||
|
||
Thinking about contributing to Talo? We’d love the help! Head over to our [contribution guide](CONTRIBUTING.md) to learn how to set up the project, run tests, and start adding new features. | ||
|
||
## Join our community | ||
|
||
Have questions, want to share feedback or show off your game? [Join us on Discord](https://trytalo.com/discord) to connect with other developers and get help from the Talo team. | ||
|
||
--- | ||
|
||
Find all the details about Talo on our [website](https://trytalo.com)! |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export default new RegExp(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|.(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/) |
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