diff --git a/README.md b/README.md index 198ca754a..e04afa0bc 100644 --- a/README.md +++ b/README.md @@ -3,17 +3,17 @@
An open source, self-hosted knowledge base that works with a SQLite db file.
-
+
-
+
Live Demo • - Discussions + Discussions
- + ## 🎯 Intentions @@ -45,7 +45,7 @@ Memos is built with a curated tech stack. It is optimized for developer experien ### Tech Stack -
+
### Prerequisites
@@ -58,7 +58,7 @@ Memos is built with a curated tech stack. It is optimized for developer experien
1. pull source code
```bash
- git clone https://github.com/justmemos/memos
+ git clone https://github.com/usememos/memos
```
2. start backend using air(with live reload)
@@ -77,7 +77,7 @@ Memos should now be running at [http://localhost:3000](http://localhost:3000) an
## 🌟 Star history
-[](https://star-history.com/#justmemos/memos&Date)
+[](https://star-history.com/#usememos/memos&Date)
---
diff --git a/server/server.go b/server/server.go
index 2ecab4e21..81357d04c 100644
--- a/server/server.go
+++ b/server/server.go
@@ -45,7 +45,7 @@ func NewServer(profile *common.Profile) *Server {
}))
// In dev mode, set the const secret key to make login session persistence.
- secret := []byte("justmemos")
+ secret := []byte("usememos")
if profile.Mode == "prod" {
secret = securecookie.GenerateRandomKey(16)
}
diff --git a/web/src/components/AboutSiteDialog.tsx b/web/src/components/AboutSiteDialog.tsx
index 934349df2..79caff956 100644
--- a/web/src/components/AboutSiteDialog.tsx
+++ b/web/src/components/AboutSiteDialog.tsx
@@ -42,7 +42,7 @@ const AboutSiteDialog: React.FC- 🏗 Source code, and built by Steven 🐯. + 🏗 Source code, and built by Steven 🐯.
diff --git a/web/vite.config.ts b/web/vite.config.ts index c46bf54c7..314b4280e 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -9,12 +9,10 @@ export default defineConfig({ proxy: { "/api": { target: "http://localhost:8080/", - // target: "https://memos.justsven.top/", changeOrigin: true, }, "/h/": { target: "http://localhost:8080/", - // target: "https://memos.justsven.top/", changeOrigin: true, }, },