1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59:18 +00:00

feat: Add Github Table as SVG (#232)

This commit is contained in:
2022-01-19 11:29:27 +01:00
committed by GitHub
parent fbde4a9b5f
commit 97a521ddac
4 changed files with 90 additions and 11 deletions

View File

@ -2,4 +2,44 @@
The server running the TCGdex API.
More informations at https://github.com/tcgdex/cards-database#pokemon-tcgdex
## Installing/Running
### Using NodeJS/NPM
You will need NPM/NodeJS installed
1. Install deps for both this directory and the parent directory
```
npm install
cd ..
npm install
cd server
```
2. Compile the database
```
cd ..
npm run compile
cd server
npm run compile
```
3. run the server !
Dev mode
```
npm run dev
```
Production mode
```
npm run build
npm run start
```
### Using Docker
Go to the parent directory and build the Dockerfile!