Skip to content

Commit

Permalink
Initial version of the prodverse site
Browse files Browse the repository at this point in the history
  • Loading branch information
andyquinterom committed Jan 5, 2024
0 parents commit f43e3a3
Show file tree
Hide file tree
Showing 14 changed files with 1,675 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target/
venv/
93 changes: 93 additions & 0 deletions docs/en/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
---
template: overrides/home.html
title: Material for MkDocs
social:
cards_layout_options:
title: Documentation that simply works
hide:
- navigation
- toc
---

<style>
.container {
display: flex;
flex: 1 1 0px;
width: 100%;
align-items: center; /* Aligns the image and text vertically */
}

.image {
width: 50%;
padding-right: 20px;
padding-left: 20px;
/* center the image */
display: flex;
justify-content: center;
}

.image img {
max-height: 400px;
}

.text {
width: 50%;
padding-left: 20px;
padding-right: 20px;
font-size: 1.5em;
}
</style>

<div class="container">
<div class="image">
<img src="/figures/prodverse.png">
</div>
<div class="text">
<h1>prodverse</h1>
<p>
The prodverse is a toolbox for taking your data science projects to production.
The ecosystem is built to help you and your team build, deploy,
and maintain production-ready data products written with the R programming language.
</p>
</div>
</div>

---

## What is the prodverse exactly?

The prodverse is a collection of tools and R packages that help you build, deploy,
and maintain production-ready data products written with the R programming language.

The goals of the prodverse are to:

- **Make R scalable**: R is a great language for data science, but
many times the tools to scale it to many users are missing.
The prodverse aims to fill this gap.
- **Make R ready for production**: R with Shiny and Plumber are amazing
tools, but there are many things that are needed to make them production-ready.
Authentication, logging, and replication are just a few of the things that
the prodverse provides.
- **No vendor lock-in**: The prodverse aims to provide a great experience
anywhere you want to deploy your R applications.

---

## Should I consider the prodverse over other tools?

The prodverse is not for everyone. If you are looking for a tool that allows
for one-click deployment and sharing of your R applications, then you should
consider [Posit Connect](https://posit.co/products/enterprise/connect/). Posit
Connect is a great tool for sharing your R applications with your data science
team or your organization.

If your data science team is not ready for a full-fledged data science platform
like Posit Connect, or needs a more customized solution, then the prodverse
might be a good fit for you.

---

## Need help?

If you need personalized consulting or support for your data science team
please reach out to us at [ixpantia.com](https://www.ixpantia.com/en/contact-us).
92 changes: 92 additions & 0 deletions docs/es/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
template: overrides/home.html
title: Material for MkDocs
social:
cards_layout_options:
title: Documentation that simply works
hide:
- navigation
- toc
---

<style>
.container {
display: flex;
flex: 1 1 0px;
width: 100%;
align-items: center; /* Aligns the image and text vertically */
}

.image {
width: 50%;
padding-right: 20px;
padding-left: 20px;
/* center the image */
display: flex;
justify-content: center;
}

.image img {
max-height: 400px;
}

.text {
width: 50%;
padding-left: 20px;
padding-right: 20px;
font-size: 1.5em;
}
</style>

<div class="container">
<div class="image">
<img src="/figures/prodverse.png" alt="Descripción de la Imagen">
</div>
<div class="text">
<h1>prodverse</h1>
<p>
El prodverse es una caja de herramientas para llevar tus proyectos de ciencia de datos a la producción.
El ecosistema está construido para ayudarte a ti y a tu equipo a construir, desplegar,
y mantener productos de datos listos para producción escritos con el lenguaje de programación R.
</p>
</div>
</div>

---

## ¿Qué es exactamente el prodverse?

El prodverse es una colección de herramientas y paquetes de R que te ayudan a construir, desplegar,
y mantener productos de datos listos para producción escritos con el lenguaje de programación R.

Los objetivos del prodverse son:

- **Hacer que R sea escalable**: R es un gran lenguaje para la ciencia de datos, pero
muchas veces faltan las herramientas para escalarlo a muchos usuarios.
El prodverse busca llenar este vacío.
- **Preparar R para producción**: R con Shiny y Plumber son herramientas increíbles,
pero hay muchas cosas que se necesitan para hacerlos listos para producción.
Autenticación, registro y replicación son solo algunas de las cosas que
proporciona el prodverse.
- **Sin bloqueo de proveedor**: El prodverse tiene como objetivo proporcionar una gran experiencia
en cualquier lugar donde quieras desplegar tus aplicaciones R.

---

## ¿Debería considerar el prodverse sobre otras herramientas?

El prodverse no es para todos. Si estás buscando una herramienta que permita
el despliegue y la compartición de tus aplicaciones R con un solo clic, entonces deberías
considerar [Posit Connect](https://posit.co/products/enterprise/connect/). Posit
Connect es una gran herramienta para compartir tus aplicaciones R con tu equipo de ciencia de datos o tu organización.

Si tu equipo de ciencia de datos no está listo para una plataforma de ciencia de datos completamente desarrollada
como Posit Connect, o necesita una solución más personalizada, entonces el prodverse
podría ser una buena opción para ti.

---

## ¿Necesitas ayuda?

Si necesitas consultoría personalizada o soporte para tu equipo de ciencia de datos
por favor contáctanos en [ixpantia.com](https://www.ixpantia.com/es/contacto).
Binary file added docs/figures/faucet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
183 changes: 183 additions & 0 deletions docs/figures/faucet.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/figures/prodverse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f43e3a3

Please sign in to comment.