mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: rename repo
This commit is contained in:
14
README.md
14
README.md
@ -3,17 +3,17 @@
|
|||||||
<p align="center">An open source, self-hosted knowledge base that works with a SQLite db file.</p>
|
<p align="center">An open source, self-hosted knowledge base that works with a SQLite db file.</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img alt="GitHub stars" src="https://img.shields.io/github/stars/justmemos/memos" />
|
<img alt="GitHub stars" src="https://img.shields.io/github/stars/usememos/memos" />
|
||||||
<img alt="Docker pull" src="https://img.shields.io/docker/pulls/neosmemo/memos.svg" />
|
<img alt="Docker pull" src="https://img.shields.io/docker/pulls/neosmemo/memos.svg" />
|
||||||
<img alt="Go report" src="https://goreportcard.com/badge/github.com/justmemos/memos" />
|
<img alt="Go report" src="https://goreportcard.com/badge/github.com/usememos/memos" />
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://memos.onrender.com/">Live Demo</a> •
|
<a href="https://memos.onrender.com/">Live Demo</a> •
|
||||||
<a href="https://github.com/justmemos/memos/discussions">Discussions</a>
|
<a href="https://github.com/usememos/memos/discussions">Discussions</a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## 🎯 Intentions
|
## 🎯 Intentions
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ Memos is built with a curated tech stack. It is optimized for developer experien
|
|||||||
|
|
||||||
### Tech Stack
|
### Tech Stack
|
||||||
|
|
||||||
<img alt="tech stack" src="https://raw.githubusercontent.com/justmemos/memos/main/resources/tech-stack.png" width="360" />
|
<img alt="tech stack" src="https://raw.githubusercontent.com/usememos/memos/main/resources/tech-stack.png" width="360" />
|
||||||
|
|
||||||
### Prerequisites
|
### Prerequisites
|
||||||
|
|
||||||
@ -58,7 +58,7 @@ Memos is built with a curated tech stack. It is optimized for developer experien
|
|||||||
1. pull source code
|
1. pull source code
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/justmemos/memos
|
git clone https://github.com/usememos/memos
|
||||||
```
|
```
|
||||||
|
|
||||||
2. start backend using air(with live reload)
|
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
|
## 🌟 Star history
|
||||||
|
|
||||||
[](https://star-history.com/#justmemos/memos&Date)
|
[](https://star-history.com/#usememos/memos&Date)
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ func NewServer(profile *common.Profile) *Server {
|
|||||||
}))
|
}))
|
||||||
|
|
||||||
// In dev mode, set the const secret key to make login session persistence.
|
// In dev mode, set the const secret key to make login session persistence.
|
||||||
secret := []byte("justmemos")
|
secret := []byte("usememos")
|
||||||
if profile.Mode == "prod" {
|
if profile.Mode == "prod" {
|
||||||
secret = securecookie.GenerateRandomKey(16)
|
secret = securecookie.GenerateRandomKey(16)
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ const AboutSiteDialog: React.FC<Props> = ({ destroy }: Props) => {
|
|||||||
</p>
|
</p>
|
||||||
<br />
|
<br />
|
||||||
<p>
|
<p>
|
||||||
<a href="https://github.com/justmemos/memos">🏗 Source code</a>, and built by <a href="https://github.com/boojack">Steven 🐯</a>.
|
<a href="https://github.com/usememos/memos">🏗 Source code</a>, and built by <a href="https://github.com/boojack">Steven 🐯</a>.
|
||||||
</p>
|
</p>
|
||||||
<Only when={profile !== undefined}>
|
<Only when={profile !== undefined}>
|
||||||
<p className="updated-time-text">
|
<p className="updated-time-text">
|
||||||
|
@ -9,12 +9,10 @@ export default defineConfig({
|
|||||||
proxy: {
|
proxy: {
|
||||||
"/api": {
|
"/api": {
|
||||||
target: "http://localhost:8080/",
|
target: "http://localhost:8080/",
|
||||||
// target: "https://memos.justsven.top/",
|
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
},
|
},
|
||||||
"/h/": {
|
"/h/": {
|
||||||
target: "http://localhost:8080/",
|
target: "http://localhost:8080/",
|
||||||
// target: "https://memos.justsven.top/",
|
|
||||||
changeOrigin: true,
|
changeOrigin: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user