RedisVisualWrite it yourself

Stop 6 · Write it yourself

Open VS Code and take a Redis demo from zero to running

STEP 1/12

Open VS Code and create an empty folder

Open VS Code first. It has a built-in terminal: open it from the menu with Terminal → New Terminal, or press ⌃` (Control + backtick). Every command in this stop goes into that terminal.

Now create the project directory: make an empty folder named redis-shipping-demo and move into it. pwd prints the folder you are in, so you can check you are in the right place.

Commands · line by line
mkdir redis-shipping-demo
Make an empty folder to serve as the project root.
cd redis-shipping-demo
Move into it — every later command runs from here.
terminal
Space next · back