-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a documentation page describing the different parts of the Openve…
…rse stack (#3786) Co-authored-by: Staci Mullins <[email protected]> Co-authored-by: Staci Cooper <[email protected]>
- Loading branch information
1 parent
db27e7e
commit b873150
Showing
2 changed files
with
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,6 @@ zero_downtime_database_management | |
deployment | ||
logging | ||
https | ||
stack | ||
``` |
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,45 @@ | ||
# Stack | ||
|
||
This page is your gateway to understanding our diverse technology stack. Explore | ||
code repositories on GitHub, access detailed documentation, and learn about the | ||
tools, frameworks, and languages driving each stack of the Openverse platform. | ||
|
||
1. Catalog | ||
- The Apache Airflow-powered system for downloading and storing Openverse's | ||
metadata | ||
- [Code](https://github.com/WordPress/openverse/blob/main/catalog) | ||
- [Documentation](https://docs.openverse.org/catalog/index.html) | ||
- Language: Python | ||
- Tools and Framework: | ||
- [Apache Airflow](https://airflow.apache.org/docs/apache-airflow/stable/index.html) | ||
2. Ingestion Server | ||
- The mechanism for refreshing the data from the catalog to the API DB and | ||
Elasticsearch indices | ||
- [Code](https://github.com/WordPress/openverse/blob/main/ingestion_server) | ||
- [Documentation](https://docs.openverse.org/ingestion_server/index.html) | ||
- Language: Python | ||
- Tools and Framework: | ||
- [Elasticsearch](https://www.elastic.co/guide/index.html) | ||
- [PostgreSQL](https://www.postgresql.org/docs/) | ||
3. API | ||
- The Django REST API for querying the database, used by the frontend | ||
- [Code](https://github.com/WordPress/openverse/blob/main/api) | ||
- [Documentation](https://docs.openverse.org/api/index.html) | ||
- Language: Python | ||
- Tools and Framework: | ||
- [Django](https://docs.djangoproject.com/en/5.0/) | ||
- [Django REST Framework](https://www.django-rest-framework.org/) | ||
4. Frontend | ||
- The public search engine at [openverse.org](https://openverse.org/), built | ||
with Vue and Nuxt | ||
- [Code](https://github.com/WordPress/openverse/blob/main/frontend) | ||
- [Documentation](https://docs.openverse.org/frontend/index.html) | ||
- Language: TypeScript / Node.js | ||
- Tools and Framework: | ||
- [Nuxt.js](https://nuxt.com/docs/getting-started/introduction) | ||
- [Vue.js](https://vuejs.org/guide/introduction.html) | ||
5. External Services | ||
- Cache: [Redis](https://redis.io/docs/about/) | ||
- Upstream and API database: [PostgreSQL](https://www.postgresql.org/docs/) | ||
- Analytics: third-party, [Plausible](https://plausible.io/docs) | ||
- Search: [Elasticsearch](https://www.elastic.co/guide/index.html) |