first commit

This commit is contained in:
Alexander Taborda Acosta
2026-08-07 19:53:30 -05:00
commit f04c496f95
55 changed files with 2687 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
export const short = {
en_US: 'A minimal, self-hosted JSON API for todo items.',
es_ES: 'Una API JSON mínima y autohospedada para tareas.',
de_DE: 'Eine minimale, selbst gehostete JSON-API für Aufgaben.',
pl_PL: 'Minimalne, samodzielnie hostowane API JSON dla zadań.',
fr_FR: 'Une API JSON minimale et auto-hébergée pour les tâches.',
}
export const long = {
en_US: 'Create, read, update, and delete todo items through a small Rails API backed by PostgreSQL.',
es_ES: 'Crea, consulta, actualiza y elimina tareas mediante una pequeña API Rails respaldada por PostgreSQL.',
de_DE: 'Erstellen, lesen, aktualisieren und löschen Sie Aufgaben über eine kleine Rails-API mit PostgreSQL.',
pl_PL: 'Twórz, odczytuj, aktualizuj i usuwaj zadania przez małe API Rails oparte na PostgreSQL.',
fr_FR: 'Créez, consultez, modifiez et supprimez des tâches via une petite API Rails utilisant PostgreSQL.',
}
+25
View File
@@ -0,0 +1,25 @@
import { setupManifest } from '@start9labs/start-sdk'
import { long, short } from './i18n'
export const manifest = setupManifest({
id: 'todo-back',
title: 'Todo Back',
license: 'MIT',
packageRepo: 'https://github.com/alextab93/todo-back',
upstreamRepo: 'https://github.com/alextab93/todo-back',
marketingUrl: 'https://github.com/alextab93/todo-back',
donationUrl: null,
description: { short, long },
volumes: ['config', 'postgres', 'storage'],
images: {
app: {
source: { dockerBuild: {} },
arch: ['x86_64'],
},
postgres: {
source: { dockerTag: 'postgres:17.6-bookworm' },
arch: ['x86_64'],
},
},
dependencies: {},
})