项目作者: Adyzng

项目描述 :
Windows PDB symbol server
高级语言: Go
项目地址: git://github.com/Adyzng/GoSymbols.git
创建时间: 2017-11-24T02:59:55Z
项目社区:https://github.com/Adyzng/GoSymbols

开源协议:MIT License

下载


GoSymbols

Windows PDB self-service symbol server by Golang and Vuejs.

Index Page
Index

Symbols Page
Download

Config

The web portal has integrated with Windows Azure AD OAuth Authorization.

Replace the correct AppID/AppKey and RedirectURI in the config.ini.

  1. [base]
  2. SYMSTORE_EXE = "C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86\symstore.exe"
  3. BUILD_SOURCE = "Z:\BuildServer"
  4. DESTINATION = "D:\\SymbolServer"
  5. LATEST_BUILD = latestbuild.txt
  6. EXCLUDE_LIST = vc120.pdb,zlib10.pdb
  7. DEBUG_ZIP = debug.zip
  8. LOG_PATH =
  9. [app]
  10. CLIENT_ID = <Your AppId> # Windows Azure AD Application ID
  11. CLIENT_KEY = <Your AppKey> # Application Key
  12. REDIRECT_URI = http://localhost:8010/api/auth/authorize # Windows AD OAuth redirect URL
  13. GRAPH_SCOPE = https://graph.microsoft.com/User.Read

Build

Golang

  1. go build

Vuejs

  1. # web src folder
  2. cd web
  3. # install dependencies
  4. npm install
  5. # build for production with minification
  6. npm run build

Run

  1. GoSymbols serve