Compare commits
6 commits
7f23223edd
...
8c59e0d9ea
Author | SHA1 | Date | |
---|---|---|---|
8c59e0d9ea | |||
8cea3ecd55 | |||
871246752e | |||
af3cfedcc2 | |||
212607a587 | |||
5ede79af03 |
5 changed files with 23 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ build.js/
|
|||
.env
|
||||
cache/
|
||||
rootfs/
|
||||
.pnpm-store/
|
||||
|
|
19
Justfile
Normal file
19
Justfile
Normal 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/
|
||||
|
|
@ -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>
|
||||
<p>Un poco engloba cuál es la internet que quiero y por qué :F</p>
|
||||
</blockquote>
|
||||
|
|
2
feeds.js
2
feeds.js
|
@ -5,7 +5,7 @@ export const feeds = {
|
|||
fauno: "https://fauno.endefensadelsl.org/feed.xml",
|
||||
copiona: "https://copiona.com/feed.xml",
|
||||
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") {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"exclude": ["build.js/", "build/"],
|
||||
"compilerOptions": {
|
||||
"target": "es2022",
|
||||
"module": "es2022",
|
||||
|
|
Reference in a new issue