This is an open source PasteBin clone. I wanted to create a self-hosted clone that can easily be deployed with docker. I often switch systems and find myself losing my copy and paste history between systems.
Memoria home page with dark theme
git clone --recursive https://github.com/unfaiyted/memoria.git
cd memoria
git submodule update --init --recursive
cd memoria-frontend
bun install
bun run dev
cd memoria-backend
# Add backend setup instructions here
Build and run the entire stack:
docker compose up -d --build
Individual services can be built and run separately:
# Frontend only
docker compose up frontend
# Backend only
docker compose up backend
memoria/
āāā docker-compose.yml
āāā frontend/ # Frontend submodule
āāā backend/ # Backend submodule
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)This project is licensed under the MIT License - see the LICENSE file for details.