https://github.com/denchenn/minio-tutorial
Simple file management service based on MinIO, NestJS and React.
https://github.com/denchenn/minio-tutorial
minio nestjs react-vite typescript
Last synced: 6 months ago
JSON representation
Simple file management service based on MinIO, NestJS and React.
- Host: GitHub
- URL: https://github.com/denchenn/minio-tutorial
- Owner: DenChenn
- Created: 2023-10-10T15:19:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-16T10:23:45.000Z (over 2 years ago)
- Last Synced: 2025-10-26T01:31:58.668Z (6 months ago)
- Topics: minio, nestjs, react-vite, typescript
- Language: TypeScript
- Homepage:
- Size: 3.24 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MinIO Tutorial

This is an example repository demonstrating how to build a basic file system using Minio and TypeScript.
## Tech Stack
- NestJS for backend
- React Vite for frontend
- PostgreSQL
- MinIO
## Quick Start
You can run everything locally :)
Frontend :
```
npm run dev
```
Backend :
```
npm run start
```
PostgreSQL :
```
docker compose up
```
MinIO (Run locally on mac) :
```
brew install minio/stable/minio
export MINIO_CONFIG_ENV_FILE=/etc/default/minio
minio server --console-address :9090
```
MinIO (Run on Zeabur) :
