an imageboard made with remix and sqlite with prisma
Go to file
Joonas ebe89cf28a add example .env 2023-01-14 20:47:07 +02:00
app last commit implementation didn't even work properly but now it works 2023-01-14 20:03:30 +02:00
prisma added relation between post replyid and id so we can show and link replies on the reply in the thread 2023-01-14 13:23:40 +02:00
styles added header and overlay components, added tailwind styling 2023-01-12 18:48:00 +02:00
.env.example add example .env 2023-01-14 20:47:07 +02:00
.eslintrc.js added .gitignore 2023-01-12 17:04:28 +02:00
.gitignore started implementing replying functionality, cleaned up 2023-01-12 22:18:11 +02:00
README.md update readme.md 2023-01-14 13:43:45 +02:00
jsconfig.json initial commit 2023-01-12 17:03:38 +02:00
package.json added new styling w/ tailwind catppuccin plugin 2023-01-13 18:40:07 +02:00
pnpm-lock.yaml added new styling w/ tailwind catppuccin plugin 2023-01-13 18:40:07 +02:00
remix.config.js initial commit 2023-01-12 17:03:38 +02:00
tailwind.config.js added new styling w/ tailwind catppuccin plugin 2023-01-13 18:40:07 +02:00

README.md

Imageboard

About

An imageboard made with Remix, with an SQLite database, using Prisma ORM. Not ready for production yet, but you can try.

Development

git clone https://git.disroot.org/qwertyasdfgh/imageboard
cd imageboard
pnpm install
pnpm prisma db push
pnpm run dev

Production

git clone https://git.disroot.org/qwertyasdfgh/imageboard
cd imageboard
pnpm install
pnpm prisma db push
pnpm run build
pnpm start

Run behind reverse proxy like NGINX