Skip to content

Commit 48fd82c

Browse files
committed
vercel deployment 🚀
1 parent 4e183bf commit 48fd82c

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,5 @@ cython_debug/
157157
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160-
#.idea/
160+
#.idea/
161+
.vercel

‎README.md

+4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ Working with FIDE oficial data is not simple, mainly because they don't have an
2020

2121
## Features
2222

23+
Check it on:
24+
[https://fide-api.vercel.app/](https://fide-api.vercel.app/)
25+
2326
- Get top players list
2427
- Get player info
2528
- Get player history
29+
- Docs on ``/docs``
2630

2731
## Usage
2832

‎vercel.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": 2,
3+
"public": false,
4+
"builds": [{ "src": "src/api.py", "use": "@vercel/python" }],
5+
"routes": [
6+
{ "src": "/", "dest": "src/api.py" },
7+
{ "src": "/docs", "dest": "src/api.py" },
8+
{ "src": "/openapi.json", "dest": "src/api.py" }
9+
]
10+
}

0 commit comments

Comments
 (0)