❗ Node.js is required for development |
---|
git clone https://github.com/dekita/palhub-client
cd ./palhub-client
# using yarn (recommended)
yarn
# using npm
npm install
# using pnpm
pnpm install --shamefully-hoist
# using yarn (recommended)
yarn dev
# using npm
npm run dev
# using pnpm
pnpm run dev
# using yarn (recommended)
yarn build
#using npm
npm run build
# using pnpm
pnpm run build
❗ Requires repository access via ENV variable GH_TOKEN |
---|
# using yarn (recommended)
yarn publish
List current GH_TOKEN
(powershell)
echo $env:GH_TOKEN
Set New GH_TOKEN
(single session)
$env:GH_TOKEN = "your_token_here"
Set New GH_TOKEN
(permanently)
[System.Environment]::SetEnvironmentVariable("GH_TOKEN", "your_token_here", [System.EnvironmentVariableTarget]::User)