1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 10:41:34 +02:00
server/README.md

52 lines
1013 B
Markdown
Raw Normal View History

2021-02-09 09:51:19 +01:00
# Fosscord API Server
2021-04-22 23:29:06 +02:00
This repository contains the Fosscord HTTP API Server
2021-02-03 11:52:49 +01:00
## Bug Tracker
2021-04-22 23:29:06 +02:00
2021-04-06 19:44:32 +02:00
[Project Board](https://github.com/fosscord/fosscord-api/projects/2)
2021-02-03 11:52:49 +01:00
## API
2021-04-22 23:29:06 +02:00
We use [express](https://expressjs.com/) for the HTTP Server and
2021-02-03 11:52:49 +01:00
[lambert-server](https://www.npmjs.com/package/lambert-server) for route handling and body validation (customized).
## Contribution
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
You should be familiar with:
2021-04-22 23:29:06 +02:00
- [Git](https://git-scm.com/)
- [NodeJS](https://nodejs.org/)
- [TypeScript](https://www.typescriptlang.org/)
- [MongoDB/mongoose](http://mongoosejs.com/)
and the other technologies we use
2021-02-03 11:52:49 +01:00
### Getting Started
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
Clone the Repository:
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
```bash
2021-04-06 19:44:32 +02:00
git clone https://github.com/fosscord/fosscord-api
2021-02-03 11:52:49 +01:00
cd discord-server
```
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
#### Install (dev)dependencies:
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
```bash
npm install
npm install --only=dev
```
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
#### Starting:
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
```
npm start
```
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
#### Debugging:
2021-04-22 23:29:06 +02:00
2021-02-03 11:52:49 +01:00
**Vscode:**
2021-04-22 23:29:06 +02:00
The Launch file configuration is in `./vscode/launch.json`,
so you can just debug the server by pressing `F5` or the `> Launch Server` button