Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yanglee2421/reports
https://github.com/yanglee2421/reports
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yanglee2421/reports
- Owner: yanglee2421
- Created: 2024-12-25T16:30:08.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-26T15:39:44.000Z (about 1 month ago)
- Last Synced: 2024-12-26T16:30:50.888Z (about 1 month ago)
- Language: TypeScript
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
## Database
- password: `Joney`
## Development
```powershell
$OutputEncoding = [Console]::OutputEncoding = [Text.Encoding]::UTF8
```Commonjs modules must be imported using require
```ts
//
const require = createRequire(import.meta.url);
// odbc only support commonjs
const odbc: typeof import("odbc") = require("odbc");
```## Build
```powershell
# Install chocolatey cli
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
# Install rebuild dependencies for ia32
choco install python visualstudio2022-workload-vctools -y
```