chore: rename repo

This commit is contained in:
boojack 2022-05-21 12:33:18 +08:00
parent c2e5a1a524
commit 7b668f17f5
4 changed files with 9 additions and 11 deletions

View file

@ -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">
<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="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 align="center">
<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>
![demo](https://raw.githubusercontent.com/justmemos/memos/main/resources/demo.png)
![demo](https://raw.githubusercontent.com/usememos/memos/main/resources/demo.png)
## 🎯 Intentions
@ -45,7 +45,7 @@ Memos is built with a curated tech stack. It is optimized for developer experien
### 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
@ -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
[![Star History Chart](https://api.star-history.com/svg?repos=justmemos/memos&type=Date)](https://star-history.com/#justmemos/memos&Date)
[![Star History Chart](https://api.star-history.com/svg?repos=usememos/memos&type=Date)](https://star-history.com/#usememos/memos&Date)
---

View file

@ -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)
}

View file

@ -42,7 +42,7 @@ const AboutSiteDialog: React.FC<Props> = ({ destroy }: Props) => {
</p>
<br />
<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>
<Only when={profile !== undefined}>
<p className="updated-time-text">

View file

@ -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,
},
},