Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 648 Bytes

README.md

File metadata and controls

28 lines (25 loc) · 648 Bytes

codeBot

Tis Code should run an bot which types automatically some code in visual Studio code. At some point it should be possible to link to a public repo and the bot then automatically writes the repo

How to use it

$ # Get the code
$ git clone https://github.com/moosler/codeBot.git
$ cd codeBot
$
$ # Virtualenv (Unix)
$ virtualenv env
$ source env/bin/activate
$
$ # Virtualenv (Windows)
$ # virtualenv env
$ # .\env\Scripts\activate
$
$ # Virtualenv (Windows on VS Code Bash)
$ # source env/Scripts/activate
$
$ # Install modules
$ pip3 install -r requirements.txt
$ # on Windows
$ # py -m pip install -r requirements.txt
$