forked from supabase/supabase
-
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.
- Loading branch information
Showing
2 changed files
with
96 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,95 @@ | ||
<p align="center"> | ||
<img width="300" src="https://gitcdn.xyz/repo/supabase/supabase/master/web/static/supabase-light.svg"/> | ||
</p> | ||
|
||
--- | ||
|
||
# Supabase | ||
|
||
[Supabase](https://supabase.io) is an open source Firebase alternative. We're building the features of Firebase using enterprise-grade open source tools. | ||
|
||
[Supabase](https://supabase.io) es una alternativa de código abierto a Firebase. Estamos construyendo las funcionalidades de Firebase usando herramientas de código abierto de nivel empresarial. | ||
|
||
- [x] Alojamiento base de datos Postgres | ||
- [x] Suscripciones en tiempo real | ||
- [x] Autenticación y autorización | ||
- [x] API auto generada | ||
- [x] Dashboard | ||
- [x] Almacenamiento | ||
- [ ] Funciones (próximamente) | ||
|
||
## Documentación | ||
|
||
Para ver la documentación completa, visita [supabase.io/docs](https://supabase.io/docs) | ||
|
||
## Comunidad & Soporte | ||
|
||
- [Foro de la comunidad](https://github.com/supabase/supabase/discussions). Mejor para: ayuda construyendo, discusiones acerca de las mejores practicas de base de datos. | ||
- [GitHub Issues](https://github.com/supabase/supabase/issues). Mejor para: bugs y errores que te puedes encontrar utilizando supabase. | ||
- [Soporte por Email](https://supabase.io/docs/support#business-support). Mejor para: problemas con la base de datos o infraestructura. | ||
|
||
## Estatus | ||
|
||
- [x] Alpha: We are testing Supabase with a closed set of customers | ||
- [x] Alpha: Estamos probando Supabase con un circulo cerrado de clientes | ||
- [x] Public Alpha: Anyone can sign up over at [app.supabase.io](https://app.supabase.io). But go easy on us, there are a few kinks. | ||
- [x] Public Alpha: Cualquiera puede registrarse en [app.supabase.io](https://app.supabase.io). Pero se flexible con nosotros, aún pueden existir detalles. | ||
- [x] Public Beta: Suficientemente estable para la mayoría de los casos no empresariales. | ||
- [ ] Public: Listo para producción | ||
|
||
We are currently in Public Beta. Watch "releases" of this repo to get notified of major updates. | ||
Acutamente estamos en la fase de Public Beta. Puedes suscribirte a los "releases" de este repositorio para mantenerte notificado de actualizaciones mayores. | ||
|
||
<kbd><img src="https://gitcdn.link/repo/supabase/supabase/master/web/static/watch-repo.gif" alt="Watch this repo"/></kbd> | ||
|
||
--- | ||
|
||
## Como funciona | ||
|
||
Supabase es una combinación de herramientas de código abierto. Estamos construyendo las funcionalidades de Firebase utilizando soluciones de código abierto de nivel empresarial. Si las herramientas y comunidades existen con una licensia abierta MIT, Apache 2 o equivalente, usaremos y apoyaremos tal herramienta. Si la herramienta no existe, la desarrollaremos y la lanzaremos como herramienta de código abierto nosotros mismos. Supabase no es un mapeo 1-1 de Firebase. Nuestro objetivo es dar a los desarrolladores una experiencia parecida a la de Firebase utilizando herramientas de código abierto. | ||
|
||
**Arquitectura actual** | ||
|
||
Supabase es una [plataforma alojada](https://app.supabase.io). Te puedes registrar y comenzar a utilizar Supabase sin instalar nada. Aún estamos creando la experiencia de desarrollo local - actualmente es en lo que nos estamos enfocando, junto con la estabilidad de la plataforma. | ||
|
||
![Arquitectura](https://supabase.io/assets/images/supabase-architecture-9050a7317e9ec7efb7807f5194122e48.png) | ||
|
||
- [PostgreSQL](https://www.postgresql.org/) es un sistema de base de datos object-relational con mas de 30 años de desarrollo activo que se ha ganado su fuerte reputación por ser confiable, robustez y rendimiento. | ||
- [Tiempo Real](https://github.com/supabase/realtime) es un server construido en Elixir que permite escuchar a los inserts, updates y deletes de PostgreSQL utilizando websockets. Supabase escucha a la funcionalidad de replicación integrada de PostgreSQL, convierte el bite de replicación en un JSON, despues transmite el JSON a través de websockets. | ||
- [PostgREST](http://postgrest.org/) es un servidor web que convierte la base de datos PostgreSQL directamente en una API RESTful. | ||
- [Almacenamiento](https://github.com/supabase/storage-api) proporciona una interfase RESTful para manipular los archivos alojados en S3, utilizando Postgres para manejar los permisos. | ||
- [postgres-meta](https://github.com/supabase/postgres-meta) es una API RESTful para manejar Postgres, permite obtener información de tablas, agregar roles, ejecutar consultas, etc. | ||
- [GoTrue](https://github.com/netlify/gotrue) es una API basada en SWT para administrar usuarios y distribuir tokens SWT. | ||
- [Kong](https://github.com/Kong/kong) es un API gateway nativo alojado en la nube. | ||
|
||
#### Librerías de cliente | ||
|
||
Our client library is modular. Each sub-library is a standalone implementation for a single external system. This is one of the ways we support existing tools. | ||
|
||
Nuestra librería de cliente es modular. Cada sub-librería es una implementación independiente para cada sistema externo. Esta es una de las formas de apoyar las herramientas existentes. | ||
|
||
- **`supabase-{lang}`**: Combina librerías y agrega mejoras. | ||
- `postgrest-{lang}`: Librería de cliente para trabajar con [PostgREST](https://github.com/postgrest/postgrest) | ||
- `realtime-{lang}`: Librería de cliente para trabajar con [Realtime](https://github.com/supabase/realtime) | ||
- `gotrue-{lang}`: Librería de cliente para trabajar con [GoTrue](https://github.com/netlify/gotrue) | ||
|
||
| Repo | Oficial | Comunidad | | ||
| --------------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| **`supabase-{lang}`** | [`JS`](https://github.com/supabase/supabase-js) | [`C#`](https://github.com/supabase/supabase-csharp) \| [`Dart`](https://github.com/supabase/supabase-dart) \| [`Python`](https://github.com/supabase/supabase-py) \| `Rust` | | ||
| `postgrest-{lang}` | [`JS`](https://github.com/supabase/postgrest-js) | [`C#`](https://github.com/supabase/postgrest-csharp) \| [`Dart`](https://github.com/supabase/postgrest-dart) \| [`Python`](https://github.com/supabase/postgrest-py) \| [`Rust`](https://github.com/supabase/postgrest-rs) | | ||
| `realtime-{lang}` | [`JS`](https://github.com/supabase/realtime-js) | [`C#`](https://github.com/supabase/realtime-csharp) \| [`Dart`](https://github.com/supabase/realtime-dart) \| [`Python`](https://github.com/supabase/realtime-py) \| `Rust` | | ||
| `gotrue-{lang}` | [`JS`](https://github.com/supabase/gotrue-js) | [`C#`](https://github.com/supabase/gotrue-csharp) \| [`Dart`](https://github.com/supabase/gotrue-dart) \| [`Python`](https://github.com/supabase/gotrue-py) \| `Rust` | | ||
|
||
## Traducciones | ||
|
||
- [Alemán](https://github.com/supabase/supabase/blob/master/i18n/README.de.md) | ||
- [Japonés](https://github.com/supabase/supabase/blob/master/i18n/README.jp.md) | ||
- [Ingles](https://github.com/supabase/supabase) | ||
- [Turco](https://github.com/supabase/supabase/blob/master/i18n/README.tr.md) | ||
- [Español](https://github.com/supabase/supabase/blob/master/i18n/README.es.md) | ||
|
||
--- | ||
|
||
## Patrocinadores | ||
|
||
[![New Sponsor](https://user-images.githubusercontent.com/10214025/90518111-e74bbb00-e198-11ea-8f88-c9e3c1aa4b5b.png)](https://github.com/sponsors/supabase) |