1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-14 14:42:55 +01:00
server/api
dependabot[bot] 3eac3f85af Bump minimist from 1.2.5 to 1.2.6 in /api
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-30 17:17:46 +03:00
..
.vscode
assets Make comments more accurate to use-case 2022-03-27 15:42:42 +03:00
client_test
jest
locales
patches
scripts
src fix(api): add vanity urls creation/update (#665) 2022-03-09 17:35:19 +03:00
tests
.dockerignore
.env.example
.gitignore
.npmignore
.prettierrc
babel.config.js
crowdin.yml
Dockerfile
LICENSE
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 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 2022-03-06 10:52:19 +03: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