Compare commits
3 Commits
fedffd5c2d
...
dd3773869d
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dd3773869d | ||
![]() |
a16a6c49cc | ||
![]() |
bf7c8493de |
@@ -1,4 +1,4 @@
|
||||
# 卜卜世界 Docker 环境配置
|
||||
# 人生无限公司 Docker 环境配置
|
||||
# 复制此文件为 .env 并根据实际情况修改配置
|
||||
|
||||
# 数据库配置
|
||||
|
BIN
doc/imgs/avatar (1).jpg
Normal file
After Width: | Height: | Size: 57 KiB |
BIN
doc/imgs/avatar (2).jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
doc/imgs/avatar (3).jpg
Normal file
After Width: | Height: | Size: 14 KiB |
BIN
doc/imgs/avatar (4).jpg
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
doc/imgs/avatar (5).jpg
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
doc/imgs/avatar (6).jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
doc/imgs/avatar (7).jpg
Normal file
After Width: | Height: | Size: 59 KiB |
BIN
doc/imgs/avatar (8).jpg
Normal file
After Width: | Height: | Size: 64 KiB |
BIN
doc/imgs/logo (1).png
Normal file
After Width: | Height: | Size: 98 KiB |
BIN
doc/imgs/logo (2).png
Normal file
After Width: | Height: | Size: 936 KiB |
BIN
doc/imgs/logo (3).png
Normal file
After Width: | Height: | Size: 722 KiB |
Before Width: | Height: | Size: 936 KiB After Width: | Height: | Size: 664 KiB |
@@ -413,7 +413,7 @@ class DatabaseInitializer {
|
||||
|
||||
async run() {
|
||||
try {
|
||||
console.log('=== 卜卜世界数据库初始化 ===\n');
|
||||
console.log('=== 人生无限公司数据库初始化 ===\n');
|
||||
|
||||
// 创建数据库
|
||||
await this.createDatabase();
|
||||
|
@@ -1,4 +1,4 @@
|
||||
-- 卜卜世界数据库初始化脚本
|
||||
-- 人生无限公司数据库初始化脚本
|
||||
-- 创建数据库(如果不存在)
|
||||
CREATE DATABASE IF NOT EXISTS `xiaoshiliu` CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
||||
USE `xiaoshiliu`;
|
||||
|
@@ -7,4 +7,4 @@ VITE_API_BASE_URL=http://localhost:3001/api
|
||||
VITE_USE_REAL_API=true
|
||||
|
||||
# 应用标题
|
||||
VITE_APP_TITLE=卜卜世界
|
||||
VITE_APP_TITLE=人生无限公司
|
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
|
||||
<title>卜卜世界 - 你的图文部落</title>
|
||||
<title>人生无限公司 - 你的图文部落</title>
|
||||
|
||||
<!-- 基础favicon -->
|
||||
<link rel="icon" type="image/x-icon" href="/logo.ico">
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "vue3-project",
|
||||
"version": "1.0.0",
|
||||
"description": "卜卜世界图文社区Vue3前端项目",
|
||||
"description": "人生无限公司图文社区Vue3前端项目",
|
||||
"author": "@ZTMYO",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "卜卜世界 - 你的图文部落",
|
||||
"short_name": "卜卜世界",
|
||||
"name": "人生无限公司 - 你的图文部落",
|
||||
"short_name": "人生无限公司",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-icon-192x192.png",
|
||||
@@ -32,5 +32,5 @@
|
||||
"display": "standalone",
|
||||
"theme_color": "#ff6b6b",
|
||||
"background_color": "#ffffff",
|
||||
"description": "卜卜世界 - 你的图文部落"
|
||||
"description": "人生无限公司 - 你的图文部落"
|
||||
}
|
@@ -1209,7 +1209,7 @@ const toggleCollect = async () => {
|
||||
|
||||
const handleShare = async () => {
|
||||
try {
|
||||
const shareUrl = `【${props.item.title}-${props.item.author}| 卜卜世界 - 你的图文部落】${window.location.origin}/post?id=${props.item.id}`
|
||||
const shareUrl = `【${props.item.title}-${props.item.author}| 人生无限公司 - 你的图文部落】${window.location.origin}/post?id=${props.item.id}`
|
||||
|
||||
// 检查是否支持现代剪贴板API
|
||||
if (navigator.clipboard && navigator.clipboard.writeText) {
|
||||
|
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="api-docs">
|
||||
<div class="docs-header">
|
||||
<h2>卜卜世界 API 接口文档</h2>
|
||||
<h2>人生无限公司 API 接口文档</h2>
|
||||
<div class="docs-info">
|
||||
<span class="version">版本: v1.2.0</span>
|
||||
<span class="base-url">基础URL: http://localhost:3001/</span>
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* 卜卜世界图文社区 - Vite配置文件
|
||||
* 人生无限公司图文社区 - Vite配置文件
|
||||
*
|
||||
* @author ZTMYO
|
||||
* @github https://github.com/ZTMYO
|
||||
|