Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/automators-com/tweaked
Fine tune your data
https://github.com/automators-com/tweaked
ai data nextjs rust synthetic tailwindcss tauri
Last synced: about 1 month ago
JSON representation
Fine tune your data
- Host: GitHub
- URL: https://github.com/automators-com/tweaked
- Owner: automators-com
- License: mit
- Created: 2024-05-29T23:44:30.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-24T03:58:20.000Z (7 months ago)
- Last Synced: 2024-12-24T14:47:43.049Z (about 1 month ago)
- Topics: ai, data, nextjs, rust, synthetic, tailwindcss, tauri
- Language: Python
- Homepage: https://tweaked.ai
- Size: 3.07 MB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tweaked.ai
![Screenshot](/screenshot.png)
To get started, run:
```sh
git clone https://github.com/automators-com/tweaked.git
```In order to contribute to this application, you need to have the following installed:
- [Node.js](https://nodejs.org/en/)
- [pnpm](https://pnpm.io/)
- [Rust](https://www.rust-lang.org/tools/install)
- [Python](https://www.python.org/downloads/)## 🚀 Project Structure
Inside of this project, you'll see the following folders and files:
```sh
/
├── .github/
│ └── workflows/
│ ├── build.yml # Test the build
│ └── publish.yml # Builds and creates a release
├── public/
│ └── favicon.svg
├── server/ # The python server logic lives here
│ └── main.py
├── src/ # The astro frontend logic lives here
│ ├── components/
│ │ └── Card.astro
│ ├── layouts/
│ │ └── Layout.astro
│ │ pages/
│ │ └── index.astro
│ └── styles/
│ └── global.css
├── src-tauri/ # Tauri and backend logic lives here
│ ├── icons/
│ ├── src/
│ │ └── main.rs
│ ├── tauri.conf.json
│ ├── cargo.lock
│ ├── build.rs
│ └── cargo.toml
│
└── package.json
```## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :------------------------------------------------------------------- |
| `pnpm install` | Installs dependencies |
| `pnpm run tauri dev` | Starts local dev server and compiles tauri dev app |
| `pnpm run tauri build` | Build the app and outputs the binary to `./src-tauri/target/release` |
| `pnpm run server:install` | Sets up the python environment |
| `pnpm run server:dev` | Starts the python server in dev mode |