skyone-wzw 9c6c16c70e
样式的小修改, 提高可访问性
* 为图标链接添加 title 属性
* 为 button 添加 type 属性
* 为下拉菜单添加 aria-* 和 role 属性
* 修改模态框为原生 dialog
2024-01-20 12:33:01 +08:00
2024-01-04 00:39:20 +08:00
2024-01-02 17:38:20 +08:00
2024-01-02 17:38:20 +08:00
2024-01-09 20:12:21 +08:00
2024-01-02 17:38:20 +08:00
2024-01-09 20:12:21 +08:00
2024-01-02 17:38:20 +08:00
2024-01-14 22:57:49 +08:00
2024-01-14 22:57:49 +08:00
2024-01-09 20:12:21 +08:00
2024-01-09 20:12:21 +08:00
2024-01-04 00:39:20 +08:00
2024-01-14 22:57:49 +08:00

Blog-Server

简体中文

The name of the project has not yet been decided, and you can give me some suggestions.

A simple blog server based on Node.js, Next.js and SQLite.

License Node.js Version

Features

  • GitHub Flavored Markdown support
  • Edit post online
  • React Server Components
  • Export posts to static HTML files using skyone-wzw/blog-server-export

Quick Start

Clone this repository and install dependencies.

git clone https://github.com/skyone-wzw/blog-server.git --depth=1
cd blog-server
npm install

Start the server.

npm run build && npm run start

Open http://localhost:3000 in your browser and enjoy it!

Configuration

There are tow configuration files about the application: .env and data/config.json.

In .env file, you can set the data-dir of the server and the path of the database file.

DATABASE_URL="file:./data/data.db"
DATA_DIR=./data

# Optional, you can set it in data/config.json
SECRET_KEY="12345678123456781234567812345678"
SECRET_IV="1234567812345678"
AUTH_EMAIL=abc@example.com
AUTH_PASSWORD=123456

The data/config.json is the configuration file of the blog. You can set the title, description, author and so on. The configure file is located in ${DATA_DIR}/config.json.

Refer the example below:

{
  "title": "Example Blog",
  "description": "Example Blog - Powered by Blog-Server",
  "url": "https://example.com",
  "keywords": ["example", "blog"],

  "master": {
    "name": "Your Name",
    "description": "Your Description",
    "email": "your-email@example.com",
    "github": "your-github-username"
  },
  
  "auth": {
    "email": "",
    "password": ""
  },
  
  "secret": {
    "key": "",
    "iv": ""
  }
}

License

MIT

Description
A Blog server. tailwind & next.js. Fediverse comment support.
https://blog-server.akk.moe
Readme 11 MiB
Languages
TypeScript 97.2%
CSS 2.4%
JavaScript 0.3%
Dockerfile 0.1%