Screeps Typescript Starter
  • Introduction
  • Getting Started
    • Installation
    • Authenticating with Screeps
    • Deploying
  • In-Depth
    • Module bundling
    • Deploy destinations
    • TypeScript
    • Prettier
    • Testing
    • Cookbook
      • Environment variables
      • One-line PowerShell setup
    • Remote Development
    • Troubleshooting
    • Contributing to the docs
Powered by GitBook
On this page
  1. In-Depth
  2. Cookbook

One-line PowerShell setup

PreviousEnvironment variablesNextRemote Development

Last updated 6 years ago

Note: As of v3.0, this no longer works. This issue is being tracked .

has made a PowerShell script to get the starter kit up and running with a single command. Go check it out !

Usage

PowerShell < 5.0:

PS> (new-object Net.WebClient).DownloadString('http://bit.ly/2z2QDJI') | iex; New-ScreepsTypeScriptSetup

PowerShell 5.0+:

PS> curl http://bit.ly/2z2QDJI | iex; New-ScreepsTypeScriptSetup
here
@ChrisTaylorRocks
here