Skip to content

Commit 43e9e95

Browse files
committed
[migrate] replace Fake Open-Source organization with Real Open-Source one
1 parent 9f3335a commit 43e9e95

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Strapi comes with a full featured [Command Line Interface][0] (CLI) which lets you scaffold and manage your project in seconds.
44

5-
[![Deploy to Production environment](https://github.com/kaiyuanshe/OrgServer/actions/workflows/main.yml/badge.svg)][1]
5+
[![Deploy to Production environment](https://github.com/Open-Source-Bazaar/OrgServer/actions/workflows/main.yml/badge.svg)][1]
66
[![](https://raw.githubusercontent.com/sindresorhus/awesome/main/media/mentioned-badge.svg)][2]
77

88
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)][3]
@@ -180,10 +180,10 @@ Feel free to check out the [Strapi GitHub repository][34]. Your feedback and con
180180
<sub>🤫 Psst! [Strapi is hiring][38].</sub>
181181

182182
[0]: https://docs.strapi.io/dev-docs/cli
183-
[1]: https://github.com/kaiyuanshe/OrgServer/actions/workflows/main.yml
183+
[1]: https://github.com/Open-Source-Bazaar/OrgServer/actions/workflows/main.yml
184184
[2]: https://github.com/strapi-community/awesome-strapi
185-
[3]: https://codespaces.new/kaiyuanshe/OrgServer
186-
[4]: https://gitpod.io/?autostart=true#https://github.com/kaiyuanshe/OrgServer
185+
[3]: https://codespaces.new/Open-Source-Bazaar/OrgServer
186+
[4]: https://gitpod.io/?autostart=true#https://github.com/Open-Source-Bazaar/OrgServer
187187
[5]: https://www.typescriptlang.org/
188188
[6]: https://pnpm.io/
189189
[7]: https://strapi.io/
@@ -198,11 +198,11 @@ Feel free to check out the [Strapi GitHub repository][34]. Your feedback and con
198198
[16]: https://github.com/ckeditor/strapi-plugin-ckeditor
199199
[17]: https://github.com/wisnuwiry/strapi-geodata
200200
[18]: https://github.com/apps/settings
201-
[19]: https://github.com/new?template_name=OrgServer&template_owner=kaiyuanshe
202-
[20]: https://codespaces.new/kaiyuanshe/OrgServer
201+
[19]: https://github.com/new?template_name=OrgServer&template_owner=Open-Source-Bazaar
202+
[20]: https://codespaces.new/Open-Source-Bazaar/OrgServer
203203
[21]: https://github.com/FreeCodeCamp-Chengdu/FreeCodeCamp-Chengdu.github.io/blob/8df9944449002758f7ec809deeb260ce08182259/.github/workflows/main.yml#L34-L63
204-
[22]: https://github.com/kaiyuanshe/OrgServer/issues/new/choose
205-
[23]: https://github.com/kaiyuanshe/OrgServer/projects
204+
[22]: https://github.com/Open-Source-Bazaar/OrgServer/issues/new/choose
205+
[23]: https://github.com/Open-Source-Bazaar/OrgServer/projects
206206
[24]: https://docs.strapi.io/dev-docs/cli#strapi-develop
207207
[25]: https://docs.strapi.io/dev-docs/cli#strapi-start
208208
[26]: https://docs.strapi.io/dev-docs/cli#strapi-build

docker-compose.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
version: '3'
22

33
networks:
4-
kaiyuanshe:
4+
open-source-bazaar:
55

66
services:
77
postgres-server:
88
image: postgres
99
networks:
10-
- kaiyuanshe
10+
- open-source-bazaar
1111
environment:
1212
- POSTGRES_PASSWORD=${ADMIN_JWT_SECRET}
1313
volumes:
@@ -17,9 +17,9 @@ services:
1717
strapi-server:
1818
depends_on:
1919
- postgres-server
20-
image: kaiyuanshe/orgserver
20+
image: open-source-bazaar/orgserver
2121
networks:
22-
- kaiyuanshe
22+
- open-source-bazaar
2323
environment:
2424
- DATABASE_CLIENT=postgres
2525
- DATABASE_URL=postgres://postgres:${ADMIN_JWT_SECRET}@postgres-server:5432/postgres
@@ -38,7 +38,7 @@ services:
3838
autoheal:
3939
image: willfarrell/autoheal:1.2.0
4040
networks:
41-
- kaiyuanshe
41+
- open-source-bazaar
4242
volumes:
4343
- /var/run/docker.sock:/var/run/docker.sock
4444
restart: always
@@ -48,7 +48,7 @@ services:
4848
- strapi-server
4949
image: caddy
5050
networks:
51-
- kaiyuanshe
51+
- open-source-bazaar
5252
ports:
5353
- 80:80
5454
- 443:443

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@kaiyuanshe/org-server",
2+
"name": "@open-source-bazaar/org-server",
33
"version": "1.0.0",
44
"description": "Data Server scaffold for all kinds of Organizations, built on Strapi",
55
"private": true,
@@ -66,9 +66,9 @@
6666
"build-type": "rm -rf types/client/ && npm run make-type",
6767
"build": "npm run clean && strapi ts:generate-types && cross-env NODE_ENV=production strapi build",
6868
"start": "cross-env NODE_ENV=production strapi start",
69-
"pack-image": "docker build -t kaiyuanshe/orgserver .",
69+
"pack-image": "docker build -t open-source-bazaar/orgserver .",
7070
"database": "docker rm -f postgres-server && docker run --name postgres-server -v ./.data:/var/lib/postgresql/data/ -e POSTGRES_PASSWORD=tobemodified -p 5432:5432 -d postgres",
71-
"container": "docker rm -f strapi-server && docker run --name strapi-server -p 1337:1337 -d kaiyuanshe/orgserver",
71+
"container": "docker rm -f strapi-server && docker run --name strapi-server -p 1337:1337 -d open-source-bazaar/orgserver",
7272
"deploy": "strapi deploy",
7373
"console": "strapi console"
7474
}

types/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
```shell
1616
npm i pnpm -g
1717

18-
pnpm i @kaiyuanshe/orgserver -D
18+
pnpm i @open-source-bazaar/orgserver -D
1919
```
2020

2121
[1]: https://github.com/settings/tokens

types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@kaiyuanshe/orgserver",
2+
"name": "@open-source-bazaar/orgserver",
33
"version": "1.0.0",
44
"types": "index.ts"
55
}

0 commit comments

Comments
 (0)