📝 updated links to fosscord-server

This commit is contained in:
Flam3rboy
2021-08-13 13:18:45 +02:00
parent b1d85653e6
commit 403de3ef66
8 changed files with 15 additions and 49 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
FROM node:lts-alpine
# needed for native packages (bcrypt, canvas)
RUN apk add --no-cache make gcc g++ python cairo-dev jpeg-dev pango-dev giflib-dev
WORKDIR /usr/src/fosscord-api
WORKDIR /usr/src/fosscord-server
COPY package.json .
COPY package-lock.json .
RUN npm rebuild bcrypt --build-from-source && npm install canvas --build-from-source
+3 -3
View File
@@ -14,7 +14,7 @@
</a>
</p>
## [About](https://github.com/fosscord/fosscord-api/wiki)
## [About](https://github.com/fosscord/fosscord-server/wiki)
This repository contains the Fosscord HTTP API Server
@@ -43,8 +43,8 @@ and the other technologies we use
Clone the Repository:
```bash
git clone https://github.com/fosscord/fosscord-api
cd discord-server
git clone https://github.com/fosscord/fosscord-server
cd fosscord-server
```
#### Install (dev)dependencies:
+5 -7
View File
@@ -12,18 +12,16 @@
"start": "npm run build && node dist/start",
"build": "tsc -b .",
"build-docker": "tsc -p tsconfig-docker.json",
"dev": "tsnd --respawn src/start.ts",
"bundle:macos": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api.app' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-macos.app.tgz' 'fosscord-api.app'",
"bundle:linux": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js' && tar -czf 'fosscord-api-linux.tgz' 'fosscord'",
"bundle:windows": "npx caxa -i . -m 'This may take a while to run the first time, please wait...' --output 'fosscord-api-windows.exe' -- '{{caxa}}/node_modules/.bin/node' '{{caxa}}/dist/start.js'"
"dev": "tsnd --respawn src/start.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fosscord/fosscord-api.git"
"url": "git+https://github.com/fosscord/fosscord-server.git"
},
"keywords": [
"discord",
"fosscord",
"fosscord-server",
"fosscord-api",
"discord open source",
"discord-open-source"
@@ -31,9 +29,9 @@
"author": "Fosscord",
"license": "ISC",
"bugs": {
"url": "https://github.com/fosscord/fosscord-api/issues"
"url": "https://github.com/fosscord/fosscord-server/issues"
},
"homepage": "https://github.com/fosscord/fosscord-api#readme",
"homepage": "https://fosscord.com",
"dependencies": {
"@fosscord/util": "file:../util",
"@types/jest": "^26.0.22",