percord / api /
@dependabot[bot] dependabot[bot] authored on 30 Mar 2022
Erkin Alp Güney committed on 30 Mar 2022
..
.vscode prettier formatted /api 4 years ago
assets Make comments more accurate to use-case 4 years ago
client_test Merge pull request #608 from Featyre/master 4 years ago
jest :sparkles: generate openapi documentation 4 years ago
locales New translations common.json (Russian) 4 years ago
patches :construction: :sparkles: new body parser (bans route) 4 years ago
scripts Bump node-fetch from 2.6.6 to 2.6.7 in /api/scripts/stresstest 4 years ago
src fix(api): add vanity urls creation/update (#665) 4 years ago
tests :art: reformatted 4 years ago
.dockerignore :sparkles: api 4 years ago
.env.example General work on API 4 years ago
.gitignore added db to gitignore 4 years ago
.npmignore :sparkles: api 4 years ago
.prettierrc :sparkles: api 4 years ago
Dockerfile Revert "fix: make API dockerfile use correct setup steps" 4 years ago
LICENSE :sparkles: api 4 years ago
README.md :pencil: updated links to fosscord-server 4 years ago
babel.config.js :art: use typescript plugin that converts to relative paths 4 years ago
crowdin.yml prettier formatted /api 4 years ago
package-lock.json Bump minimist from 1.2.5 to 1.2.6 in /api 4 years ago
package.json Fixed npm run tsnode throwing error about ES modules for node-fetch. Probably was api package.json still included node-fetch 3, but bundle still had v2 4 years ago
tsconfig.json :art: reformat 4 years ago
README.md

Fosscord HTTP API Server

About

This repository contains the Fosscord HTTP API Server

Bug Tracker

Project Board

API

We use express for the HTTP Server and lambert-server for route handling and body validation (customized).

Contribution

You should be familiar with:

and the other technologies we use

Getting Started

Clone the Repository:

git clone https://github.com/fosscord/fosscord-server
cd fosscord-server

Install (dev)dependencies:

npm install
npm install --only=dev

Starting:

npm start

Debugging:

Vscode: The Launch file configuration is in ./vscode/launch.json, so you can just debug the server by pressing F5 or the > Launch Server button