Skip to content

Commit

Permalink
add README.md reference to setup.cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
Freymaurer committed Apr 4, 2024
1 parent 025734d commit 98efaa0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,20 @@ Currently we provide some documentation in form of markdown files in the `/docs`

#### Local Setup

On windows you can use the `setup.cmd` to run the following steps automatically!

1. Setup dotnet tools

`dotnet tool restore`


2. Install NPM dependencies

`npm install`
`npm install`

3. Setup python environment

`py -m venv .venv`
`py -m venv .venv`

4. Install [Poetry](https://python-poetry.org/) and dependencies

Expand Down
3 changes: 3 additions & 0 deletions setup.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
@echo off
TITLE ARCtrl Setup

ECHO Restore .NET tools
CALL dotnet tool restore

ECHO Install JavaScript Dependencies
REM npm is a batch file itself. Must use with "CALL" otherwise will exit afterwards.
CALL npm i
Expand Down

0 comments on commit 98efaa0

Please sign in to comment.