https://github.com/outpoot/bliptext
The wiki where you edit a word every 30sec, with 2.1M Wikipedia articles ported to a custom markdown format. Real-time text editing, beautiful UI & more. Vandalize articles today!
https://github.com/outpoot/bliptext
blip bliptext facedev svelte sveltekit wiki wikipedia
Last synced: 26 days ago
JSON representation
The wiki where you edit a word every 30sec, with 2.1M Wikipedia articles ported to a custom markdown format. Real-time text editing, beautiful UI & more. Vandalize articles today!
- Host: GitHub
- URL: https://github.com/outpoot/bliptext
- Owner: outpoot
- License: other
- Created: 2025-01-23T14:08:02.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-03-05T21:13:59.000Z (about 2 months ago)
- Last Synced: 2025-03-23T02:11:23.677Z (about 1 month ago)
- Topics: blip, bliptext, facedev, svelte, sveltekit, wiki, wikipedia
- Language: Svelte
- Homepage: https://bliptext.com
- Size: 23.9 MB
- Stars: 128
- Watchers: 0
- Forks: 14
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Bliptext.com - the wiki where you edit a word every 30 seconds
[Privacy Policy](https://bliptext.com/legal/privacy) | [Terms of Service](https://bliptext.com/legal/terms) | [License](LICENSE.md) | [YouTube video](https://www.youtube.com/watch?v=CosPILI0qrw)## About
We ported **2,112,863** (2.1 million) Wikipedia articles and removed edit restrictions.Create an account, find any article (or pick from the most active ones), and edit it live alongside others.
https://github.com/user-attachments/assets/1be617e2-c907-4d90-8d79-86b9216b6169
Get your friends to vandalize pages, completely rewrite them and shape Bliptext into a misinformation-fest!
## Images
Desktop
Mobile
![]()
![]()
![]()
Custom markdown flavor
1. Summary tag (intended for one-time use)
![]()
![]()
2. Wikibox tag (intended for multiple visual examples)
![]()
![]()
## Note
- Our Markdown format differs from Wikipedia's utter horrendousness.
- While we've automatically converted Wikipedia articles to our simplified format, some information may be missing. This project is meant to be a fun alternative, not a replacement or competitor to Wikipedia.
- Only administrators can create new articles. This helps maintain quality by building upon our existing collection of well-structured content.## Self-host
### 1. Installation
```bash
npm install
cp .env.example .env
```Configure your environment variables in `.env`:
```plaintext
DATABASE_URL="postgres://root:mysecretpassword@localhost:5432/local"BETTER_AUTH_SECRET=
PUBLIC_BETTER_AUTH_URL=http://localhost:3000PUBLIC_WEBSOCKET_URL=ws://localhost:8080
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=JWT_SECRET=
REDIS_URL=
SITE_URL=http://localhost:3000
DISCORD_WEBHOOK_URL=
```### 2. Database Setup
Start PostgreSQL using Docker:
```bash
npm run db:start
```Push the database schema:
```bash
npm run db:push
```### 3. Development
Start the development server:
```bash
npm run dev
```The application will be available at `http://localhost:3000`
### EXTRA: WebSocket Server
The WebSocket server is required for real-time features.
1. Run these commands:
```bash
cd websocket
cp .env.example .env
```2. Then configure the `.env` variables:
```plaintext
REDIS_URL=
SITE_URL=http://localhost:3000
```3. Run the server:
```
bun main.ts
```## EXTRA: Database
Build and run using Docker:
```bash
docker build -t bliptext .# Run the container
docker run -p 3000:3000 bliptext
```# Contributing
If you wish to contribute, you are free to do so. Please keep in mind:
- Don't open pull requests that simply fix grammatical issues or such. Open an issue instead.
- Don't submit "troll" pull requests.
- Don't submit pull requests that rewrite a big part of the project. **Please create a GitHub issue and ask if such a rewrite is welcome before starting.**
- Examples of "big rewrites" include:
- Changing the core architecture (programming language / structure)
- Switching to a different framework or major library
- Why this matters:
- They may conflict with planned future changes
- The maintainers might already be working on similar improvements
- We don't want to waste your & our time# License
This project uses dual licensing:## 1. Article Content
All article content derived from Wikipedia is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0). See [LICENSE-CONTENT.md](LICENSE-CONTENT.md) for details.## 2. Code and Original Content
The code and original content of this project (excluding Wikipedia-derived content) is licensed under **Attribution-NonCommercial 2.0 International**.### You are free to:
- 📩✅ Share — copy and redistribute the material in any medium or format
- 🔁✅ Adapt — remix, transform, and build upon the materialThe licensor cannot revoke these freedoms as long as you follow the license terms.
### Under the following terms:
- 👤✅ Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- 💵❌ NonCommercial — You may not use the material for commercial purposes.
- 📜❌ No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.### Please refer to [CC BY-NC 2.0](https://creativecommons.org/licenses/by-nc/2.0/deed.en) for more information.
Created by FaceDev under [outpoot](https://outpoot.com).