Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kingsznhone/picoforum
Pico Forum is a Super light weight Forum framework based on ASP.NET Core Blazor
https://github.com/kingsznhone/picoforum
asp-net-core blazor social-network web website
Last synced: 23 days ago
JSON representation
Pico Forum is a Super light weight Forum framework based on ASP.NET Core Blazor
- Host: GitHub
- URL: https://github.com/kingsznhone/picoforum
- Owner: kingsznhone
- License: mit
- Created: 2023-12-04T01:34:22.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-17T18:10:11.000Z (4 months ago)
- Last Synced: 2024-07-17T22:16:38.569Z (4 months ago)
- Topics: asp-net-core, blazor, social-network, web, website
- Language: C#
- Homepage:
- Size: 1.6 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# Pico Forum
## What is this
Pico Forum is an ultra-lightweight forum framework built on ASP.NET Core Blazor.
[Demo Host](https://pico.zangai.family/) (On my ubuntu server)
Unlike common open-source forum projects that are developed using older technologies like PHP, the codebases of these projects have accumulated over the years, reaching an unimaginable level of complexity, becoming bloated and fragile.
A forum doesn't necessarily have to be extensive; it can be compact and lightweight. This is where Pico Forum comes in.
True to its name, it's a micro forum that can be deployed on your home computer.
During the HackTogether event, thanks to the powerful capabilities of .NET 8, I took on the challenge of Blazor and completed the demo in just about a week on my own.
What Excited me the most was the seamless integration of Razor Pages and Bootstrap, freeing developers from the historical struggles with JavaScript and CSS in the mud.
The Server Interactive Razor Page eliminates the presence of MVC in the entire project, creating a unique sensation that requires abandoning traditional website development thinking.
Pico Forum implements the fundamental features expected of a forum, including posting, replying, deleting posts, and banning users.
I am not good at designing frontend pages, so the layout may appear a bit ugly.
Contribution is welcome.
## Preview
## Usage
1. download ASP.NET Core Runtime 8.0.0
2. Download release.
3. Edit ```appsetting.json``` for listen url.
4. ```$ dotnet ./picoforum.dll``` on Linux
double click on ```picoforum.exe``` on Windows5. Input initial password for [email protected](Super Admin) in console.
## Key Features:
1. Use an SQLite database, eliminating the need for a heavy database service installation.
2. Uses JSON-formatted extensible persistence configuration files that can be modified either in the web-based administration panel or through the operating system's file manager.
3. Use [TinyMCE](https://www.tiny.cloud/) WYSIWYG editor. RichText Fully Supported (See Below)
4. Low coupling with the system environment; backup only requires copying the directory.
5. Cross-platform on Windows and Linux. (Not fully tested yet)
6. No phone number, no email validation. Reg & Go like internet 90's.
7. I guess the performance should be pretty cool with .NET8 , compare with those PHP old buddy.
## How to Configure [TinyMCE](https://www.tiny.cloud/)
1. Registry account.
2. go to [dashboard](https://www.tiny.cloud/my-account/integrate/)
3. Copy Api Key to ```appsetting.json```
4. Add your host domain in [dashboard](https://www.tiny.cloud/my-account/domains/)
I think Blazor should have more useful controls like this.
## Change Log
### v0.0.0.3
2023.12.13- Fix avatar upload on Linux. Use Skiasharp.
- Add post search and search query limit.### v0.0.0.2
2023.12.06- Add avatar upload. with safety check.
- Add Jpeg compress quality option.
- Add max avatar upload size option.
- Use a better config option to control ip/port binding.
### v0.0.0.1
2023.12.04The Pico Forum is tiny, so the version number is also tiny.
## Known Issue
## Roadmap
### Short Term
1. Add more infomation on Razor Component. Such as Total View/Reply.
2. Add more field in user table. Like signature something.
### Long TermOpen an issue to share your opion.