Skip to content

Commit 3b68d0f

Browse files
authored
Update README.md
1 parent 70a917f commit 3b68d0f

1 file changed

Lines changed: 25 additions & 26 deletions

File tree

README.md

Lines changed: 25 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,64 @@
1-
# RustChan
21

3-
Un imageboard匿名 (style 4chan) écrit en Rust.
2+
# RustChan
43

4+
An anonymous imageboard (4chan style) written in Rust.
55

66
![screenshot](https://raw.githubusercontent.com/Yusufibin/RustChan/refs/heads/main/Capture%20d%E2%80%99%C3%A9cran_2026-04-15_07-29-17.png)
77

88
## Stack
99

10-
- **Backend** : Rust + Axum
11-
- **Base de données** : SQLite (sqlx)
12-
- **Templates** : Tera
13-
- **Async** : Tokio
10+
- **Backend**: Rust + Axum
11+
- **Database**: SQLite (sqlx)
12+
- **Templates**: Tera
13+
- **Async**: Tokio
1414

1515
## Installation
1616

1717
```bash
18-
# Compiler le projet
18+
# Build the project
1919
cargo build
2020

21-
# Lancer le serveur
21+
# Run the server
2222
cargo run
2323

24-
# Avec un port personnalisé
24+
# With a custom port
2525
PORT=3001 cargo run
2626
```
2727

2828
## Structure
2929

3030
```
3131
src/
32-
main.rs # Point d'entrée, routes
33-
db/ # Opérations base de données
34-
handlers/ # Gestionnaires HTTP
35-
models/ # Structures de données
36-
templates/ # Templates Tera
32+
main.rs # Entry point, routes
33+
db/ # Database operations
34+
handlers/ # HTTP handlers
35+
models/ # Data structures
36+
templates/ # Tera templates
3737
static/ # CSS, images
38-
uploads/ # Images uploadées
38+
uploads/ # Uploaded images
3939
```
4040

41-
## Fonctionnalités
41+
## Features
4242

43-
- Création et gestion de boards
44-
- Threads et posts avec/sans images
45-
- Panel d'administration
46-
- Upload d'images
47-
- Système d'authentification admin
43+
- Board creation and management
44+
- Threads and posts with/without images
45+
- Administration panel
46+
- Image uploading
47+
- Admin authentication system
4848

49-
## Commandes utiles
49+
## Useful commands
5050

5151
```bash
52-
# Vérifier le code sans compiler
52+
# Check the code without compiling
5353
cargo check
5454

5555
# Linter
5656
cargo clippy
5757

58-
# Formater le code
58+
# Format the code
5959
cargo fmt
6060
```
6161

62-
63-
6462
![screenshot](https://raw.githubusercontent.com/Yusufibin/RustChan/refs/heads/main/Capture%20d%E2%80%99%C3%A9cran_2026-04-15_07-29-45.png)
63+
6564
![screenshot](https://raw.githubusercontent.com/Yusufibin/RustChan/refs/heads/main/Capture%20d%E2%80%99%C3%A9cran_2026-04-15_07-30-19.png)

0 commit comments

Comments
 (0)