This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import io | |
import pathlib | |
import requests | |
from urllib.parse import urlparse, parse_qs, urlencode, urlunparse | |
parser = argparse.ArgumentParser() | |
parser.add_argument('gamedata_dir', action='store', | |
help='Specifiy the game data directory') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"builds": [ | |
{ | |
"src": "src/index.js", | |
"use": "@vercel/node" | |
}, | |
{ | |
"src": "static/**", | |
"use": "@vercel/static" | |
} |