-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also add links to the instructions from the root README.md
- Loading branch information
Showing
3 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Windows environment setup | ||
|
||
This is a list of step-by-step instructions to set up a Windows environment from _scratch_ to build, run, and develop the TypeAgent repo, collated from various READMEs throughout the repo and external source. The instruction will install and setup the necessary tools and put the repo in C:\src\TypeAgent. Links to the original instructions for each part are provided for reference, but mostly not required to visit if you just follow the instructions here. Skip or change the steps as necessary to suit your needs. | ||
|
||
## Build | ||
|
||
- Install Git ([download](https://git-scm.com/downloads/win)) | ||
- Install Node ([download](https://nodejs.org/en/download)) | ||
- Enable corepack | ||
- Open Command Prompt as Administrator | ||
- `corepack enable` | ||
- Clone and build: | ||
- Open command prompt | ||
- `git clone https://github.com/microsoft/TypeAgent C:\src\TypeAgent` | ||
- `cd /d C:\src\TypeAgent\ts` | ||
- `pnpm setup` | ||
- `pnpm i` | ||
- `pnpm run build` | ||
|
||
## Run | ||
|
||
- Setup Service Keys (See instructions [here](./../../ts/README.md#service-keys)) | ||
- Run the TypeAgent shell | ||
- `pnpm run shell` | ||
|
||
## Development | ||
|
||
- Install VSCode ([download](https://code.visualstudio.com/download)) | ||
- Start VSCode | ||
- Open command prompt | ||
- `code C:\src\TypeAgent\ts` |