Compare commits

...

6 commits

Author SHA1 Message Date
8c59e0d9ea Justfile: sincronizar
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-04-30 16:10:03 -03:00
8cea3ecd55 feeds: desactivar icyphox
bad ssl
2023-04-30 16:09:38 -03:00
871246752e cached-feeds/copiona: 2023-04-30 16:09:32 -03:00
af3cfedcc2 Justfile: borrar contenedor al terminar 2023-04-30 16:08:56 -03:00
212607a587 tsconfig: excluir build 2023-04-30 19:08:25 +00:00
5ede79af03 compilar con contenedores sin ci 2023-04-30 16:02:17 -03:00
5 changed files with 23 additions and 2 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ build.js/
.env .env
cache/ cache/
rootfs/ rootfs/
.pnpm-store/

19
Justfile Normal file
View file

@ -0,0 +1,19 @@
default: build
builder := "gitea.nulo.in/nulo/sitio-build"
build_builder_image:
podman build -t {{builder}} tooling/
_run command: build_builder_image
podman run -it --rm \
-v ".:/sitio:Z" --workdir /sitio \
{{builder}} sh -c "{{command}}"
run command: (_run "pnpm install") (_run command)
build: (run './tool build')
check: (run './tool check')
refresh_feeds: (run './tool refresh_feeds')
ready_to_upload: check refresh_feeds build
upload: ready_to_upload
rsync --rsh='ssh -p443' --recursive --chmod=644 build/ root@nulo.ar:/var/www/nulo.ar/

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es"><generator uri="https://jekyllrb.com/" version="4.3.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" hreflang="es" /><updated>2023-04-10T08:56:41-03:00</updated><id>/feed.xml</id><title type="html">copiona.com | un bunker biteario de @librenauta</title><entry><title type="html">Risografía - internet es una poesía sin terminar</title><link href="/internet-es-una-poes%C3%ADa-sin-terminar/" rel="alternate" type="text/html" title="Risografía - internet es una poesía sin terminar" /><published>2023-04-08T00:00:00-03:00</published><updated>2023-01-23T20:20:21-03:00</updated><id>/internet-es-una-poes%C3%ADa-sin-terminar</id><content type="html" xml:base="/internet-es-una-poes%C3%ADa-sin-terminar/"><![CDATA[<p>Viajé a barcelona y unos días antes pude contactarme con <a href="https://dotheprint.es/">dotheprint</a> un pequeño estudio de impresión de risografía para hacer algunas copias locales. La verdad no sabía muy bien como sería el resultado de la impresión asi que me vi unos tutoriales de como generar cada capa en youtube color por color y mande a imprimir un fanzine que diseñe en viaje llamado: <em>internet es una poesía sin terminar</em></p> <?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es"><generator uri="https://jekyllrb.com/" version="4.3.1">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" hreflang="es" /><updated>2023-04-27T20:00:12-03:00</updated><id>/feed.xml</id><title type="html">copiona.com | un bunker biteario de @librenauta</title><entry><title type="html">Risografía - internet es una poesía sin terminar</title><link href="/internet-es-una-poes%C3%ADa-sin-terminar/" rel="alternate" type="text/html" title="Risografía - internet es una poesía sin terminar" /><published>2023-04-08T00:00:00-03:00</published><updated>2023-01-23T20:20:21-03:00</updated><id>/internet-es-una-poes%C3%ADa-sin-terminar</id><content type="html" xml:base="/internet-es-una-poes%C3%ADa-sin-terminar/"><![CDATA[<p>Viajé a barcelona y unos días antes pude contactarme con <a href="https://dotheprint.es/">dotheprint</a> un pequeño estudio de impresión de risografía para hacer algunas copias locales. La verdad no sabía muy bien como sería el resultado de la impresión asi que me vi unos tutoriales de como generar cada capa en youtube color por color y mande a imprimir un fanzine que diseñe en viaje llamado: <em>internet es una poesía sin terminar</em></p>
<blockquote> <blockquote>
<p>Un poco engloba cuál es la internet que quiero y por qué :F</p> <p>Un poco engloba cuál es la internet que quiero y por qué :F</p>
</blockquote> </blockquote>

View file

@ -5,7 +5,7 @@ export const feeds = {
fauno: "https://fauno.endefensadelsl.org/feed.xml", fauno: "https://fauno.endefensadelsl.org/feed.xml",
copiona: "https://copiona.com/feed.xml", copiona: "https://copiona.com/feed.xml",
j3s: "https://j3s.sh/feed.atom", j3s: "https://j3s.sh/feed.atom",
icyphox: "https://icyphox.sh/blog/feed.xml", // icyphox: "https://icyphox.sh/blog/feed.xml",
}; };
if (process.argv[2] === "refresh") { if (process.argv[2] === "refresh") {

View file

@ -1,4 +1,5 @@
{ {
"exclude": ["build.js/", "build/"],
"compilerOptions": { "compilerOptions": {
"target": "es2022", "target": "es2022",
"module": "es2022", "module": "es2022",