bring back yahoo pipes!
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: init

Kieran Klukas fdd011d7

+72
+10
LICENSE.md
··· 1 + # The O'Saasy License 2 + 3 + Copyright © `2025` `Kieran Klukas` 4 + 5 + Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 + 7 + The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 + No licensee or downstream recipient may use the Software (including any modified or derivative versions) to directly compete with the original Licensor by offering it to third parties as a hosted, managed, or Software-as-a-Service (SaaS) product or cloud service where the primary value of the service is the functionality of the Software itself. 9 + 10 + THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+62
README.md
··· 1 + # Indiko 2 + 3 + The canonical repo for this is hosted on tangled over at [`dunkirk.sh/pipes`](https://tangled.org/@dunkirk.sh/pipes) 4 + 5 + ## Installation 6 + 7 + 1. Clone the repository: 8 + 9 + ```bash 10 + git clone https://github.com/taciturnaxolotl/indiko.git 11 + cd indiko 12 + ``` 13 + 14 + 2. Install dependencies: 15 + 16 + ```bash 17 + bun install 18 + ``` 19 + 20 + 3. Create a `.env` file: 21 + 22 + ```bash 23 + cp .env.example .env 24 + ``` 25 + 26 + Configure the following environment variables: 27 + 28 + ```env 29 + ORIGIN=https://your-indiko-domain.com 30 + RP_ID=your-indiko-domain.com 31 + PORT=3000 32 + NODE_ENV=production 33 + ``` 34 + 35 + - `ORIGIN` - Full URL where Indiko is hosted (must match RP_ID) 36 + - `RP_ID` - Domain for WebAuthn (no protocol, matches ORIGIN domain) 37 + - `PORT` - Port to run the server on 38 + - `NODE_ENV` - Environment (dev/production) 39 + 40 + The database will be automatically created at `./indiko.db` on first run. 41 + 42 + 4. Start the server: 43 + 44 + ```bash 45 + # Development (with hot reload) 46 + bun run dev 47 + 48 + # Production 49 + bun run start 50 + ``` 51 + 52 + <p align="center"> 53 + <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/main/.github/images/line-break.svg" /> 54 + </p> 55 + 56 + <p align="center"> 57 + <i><code>&copy 2025-present <a href="https://dunkirk.sh">Kieran Klukas</a></code></i> 58 + </p> 59 + 60 + <p align="center"> 61 + <a href="https://tangled.org/dunkirk.sh/indiko/blob/main/LICENSE.md"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=O'Saasy&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a> 62 + </p>