Skip to content

Commit

Permalink
feat: add pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminshafii committed Jan 18, 2025
1 parent d1859fa commit f155d3c
Show file tree
Hide file tree
Showing 59 changed files with 17,137 additions and 0 deletions.
41 changes: 41 additions & 0 deletions pipes/file-organizer-notifications/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
12 changes: 12 additions & 0 deletions pipes/file-organizer-notifications/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

turn your screen into a living knowledge base with ai

analyse your screen/mic activity in real time and write logs, to build a CRM, market research, ideas, user personas, etc.

local LLM first

https://github.com/user-attachments/assets/e4c115d9-51cf-4870-aec4-4df4743d2d02



<img width="1312" alt="Screenshot 2024-12-21 at 4 39 29 PM" src="https://github.com/user-attachments/assets/2e395762-198f-43e6-9e5a-2974b8e71fcf" />
Binary file added pipes/file-organizer-notifications/bun.lockb
Binary file not shown.
21 changes: 21 additions & 0 deletions pipes/file-organizer-notifications/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
16 changes: 16 additions & 0 deletions pipes/file-organizer-notifications/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals", "next/typescript"),
];

export default eslintConfig;
14 changes: 14 additions & 0 deletions pipes/file-organizer-notifications/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
transpilePackages: ["@screenpipe/js"],
webpack: (config, { }) => {
return config;
},
devIndicators: {
buildActivity: false,
appIsrStatus: false
}
};

export default nextConfig;
Loading

0 comments on commit f155d3c

Please sign in to comment.