-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic Description of Planned Projects (#19)
* Add a basic description of planned projects * Create index.md * Link to docs; remove from readme
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 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
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,24 @@ | ||
|
||
## Smilodon Docs | ||
|
||
This project is just starting, so the docs are incomplete. | ||
|
||
## Project Components | ||
|
||
The Codename "Smilodon" Project contains a few projects. | ||
|
||
### Web API Project | ||
|
||
The WebApp project exposes the REST API, which includes the [ActivityPub](https://activitypub.rocks/) Endpoint and a [WebFinger](https://webfinger.net/) Endpoint. It's built using AspNetCore on .NET 7. Having this separate from the Web Streaming allows them to scale separately. | ||
|
||
### Web Streaming Project | ||
|
||
The WebStreaming project handles the real-time updates and other long-running connections using web sockets. Having this separate from the Web API allows them to scale separately. | ||
|
||
### Background Processing Project | ||
|
||
TBD - Most likely a .NET 7 process of some kind. | ||
|
||
### Database | ||
|
||
TBD - Most likely a Postgres database compatible with the schema used by Mastodon, so that switching a server to/from Mastodon is easy. |