1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 02:42:28 +01:00
server/api
2022-07-16 22:22:48 +10:00
..
.vscode
assets Merge branch 'master' into feat/multiUploads 2022-07-09 14:16:15 +10:00
client_test Remove more WAAO references 2022-05-06 18:23:52 +03:00
jest
locales Merge pull request #737 from fosscord/translation 2022-06-26 16:27:48 +02:00
patches
scripts Filter out schemas that block generation instead, and also include util in files 2022-07-07 21:53:30 +03:00
src Respect with_mutual_guilds and guild_id in /users/:id/profile 2022-07-16 22:22:48 +10:00
tests
.dockerignore
.env.example General work on API 2021-12-18 19:17:04 +03:00
.gitignore
.npmignore
.prettierrc
babel.config.js
Dockerfile
package-lock.json Bump minimist from 1.2.5 to 1.2.6 in /api 2022-03-30 17:17:46 +03:00
package.json Use SPDX license syntax in 'package.json' files 2022-06-02 17:33:50 +02:00
README.md
tsconfig.json

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