Skip to content

tridipdam11/Rivet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rivet

Rivet is a visual workflow automation tool with:

  • a Next.js frontend in frontend/
  • a Python backend in backend/

Backend

The backend uses FastAPI and Pydantic with Python-friendly package naming:

  • backend/app/main.py for the ASGI entrypoint
  • backend/app/api/routes/ for route modules
  • backend/app/models/ for request and domain schemas
  • backend/app/services/ for validation and execution logic

Run the backend

cd backend
python -m venv .venv
.venv\Scripts\activate
pip install -r requirements.txt
uvicorn app.main:app --reload

The API will start on http://127.0.0.1:8000.

Frontend

cd frontend
npm install
npm run dev

About

AI workflow automation tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors