Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into matt-ocr
Browse files Browse the repository at this point in the history
  • Loading branch information
m13v committed Jul 18, 2024
2 parents e977098 + 2ebbea5 commit 7925b41
Show file tree
Hide file tree
Showing 33 changed files with 6,683 additions and 479 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# # Run for macOS
# act -W .github/workflows/release-app.yml --container-architecture linux/amd64 -j release -P macos-latest=-self-hosted

# act -W .github/workflows/release-app.yml --container-architecture linux/amd64 -j release -P macos-latest=-self-hosted

# # Run for Linux
# act -W .github/workflows/release-app.yml --container-architecture linux/amd64 -j release -P ubuntu-22.04=-self-hosted



name: "Release app"

Expand Down Expand Up @@ -37,7 +43,7 @@ jobs:

- name: install frontend dependencies
working-directory: examples/apps/screen-pipe-app/
run: pnpm i
run: npm i

- uses: tauri-apps/tauri-action@v0
env:
Expand Down
81 changes: 0 additions & 81 deletions .github/workflows/release.yml

This file was deleted.

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[workspace]
members = ["screenpipe-server", "screenpipe-vision", "screenpipe-audio", "examples/apps/screen-pipe-app/src-tauri"]
members = ["screenpipe-server", "screenpipe-vision", "screenpipe-audio", "examples/apps/screen-pipe-app/src-tauri", "examples/apps/screenpipe-app-dioxus"]
exclude = []
resolver = "2"


[workspace.package]
version = "0.1.0"
authors = ["louis030195 <[email protected]>"]
Expand All @@ -21,4 +22,8 @@ tracing = "0.1.37"
tokio = { version = "1.15", features = ["full", "tracing"] }

# dev
criterion = { version = "0.5.1", features = ["async_tokio"] }
criterion = { version = "0.5.1", features = ["async_tokio"] }




7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@

![Demo](./public/demo.gif)

# Extend your human memory with LLM. Open source, runs locally, developer friendly.
# Build AI apps that have the full context

Library for devs to build AI apps on top of all your life data. Alternative to Rewind.ai
Library for devs to build AI apps on top of all your life data. Alternative to Rewind.ai. Record your screens & audio 24/7. You own your data. Rust.
We are shipping daily, make suggestions, post bugs, [give feedback](https://cal.com/louis030195/screenpipe)!

Chat with an AI that knows everything about you. Record your screens & audio 24/7. You own your data. Rust.
![image](https://github.com/user-attachments/assets/b89a867f-aa09-4aa0-bf58-d808df688c16)


## Getting started

Expand Down
36 changes: 9 additions & 27 deletions examples/apps/screen-pipe-app/README.md
Original file line number Diff line number Diff line change
@@ -1,36 +1,18 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
README TODO

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## Learn More
releasing app:

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
```
export TAURI_SIGNING_PRIVATE_KEY="$HOME/.tauri/myapp.key"
export TAURI_SIGNING_PRIVATE_KEY_PASSWORD=""
pnpm tauri build
# todo rest
```

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
ask @louis030195 for key/pw

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
11 changes: 7 additions & 4 deletions examples/apps/screen-pipe-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@
"lint": "next lint"
},
"dependencies": {
"@tauri-apps/plugin-cli": "2.0.0-beta.7",
"@tauri-apps/plugin-shell": "2.0.0-beta.8",
"@tauri-apps/plugin-store": "2.0.0-beta.7",
"@tauri-apps/plugin-updater": "2.0.0-beta.7",
"next": "14.2.4",
"react": "^18",
"react-dom": "^18",
"tauri-plugin-autostart-api": "github:tauri-apps/tauri-plugin-autostart#v1"
"react-dom": "^18"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.0",
"@tauri-apps/cli": "2.0.0-beta.22",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
Expand All @@ -25,4 +28,4 @@
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}
}
Loading

0 comments on commit 7925b41

Please sign in to comment.