chore: rename repo

pull/65/head
boojack 3 years ago
parent c2e5a1a524
commit 7b668f17f5

@ -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>
![demo](https://raw.githubusercontent.com/justmemos/memos/main/resources/demo.png) ![demo](https://raw.githubusercontent.com/usememos/memos/main/resources/demo.png)
## 🎯 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
[![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)
--- ---

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

Loading…
Cancel
Save