Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.4 VSCode Extension, Live Interviewing Features #2

Open
wants to merge 42 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
d10a966
Add in temporary changes
minh-hatchways Oct 3, 2023
a471874
Add in some temp changes
minh-hatchways Oct 4, 2023
4b9a4d0
Add in disposables
minh-hatchways Oct 5, 2023
63ec9f5
Run prettier
minh-hatchways Oct 5, 2023
7c7b502
Add more documentation
minh-hatchways Oct 5, 2023
4a430b3
Add in code
minh-hatchways Oct 5, 2023
fa38fca
Firing multiple events
minh-hatchways Oct 5, 2023
775a9b8
Fix to use badge name
minh-hatchways Oct 5, 2023
dba0f50
tzry doing multiple file decoration provider
minh-hatchways Oct 6, 2023
3b6e378
Fix code
minh-hatchways Oct 6, 2023
90dbbf3
Add in multiple emitters per user
minh-hatchways Oct 6, 2023
c659adc
Clean up comments
minh-hatchways Oct 6, 2023
d3a6bef
fix cursor
minh-hatchways Oct 6, 2023
388e2ac
Fix socket extension again
minh-hatchways Oct 6, 2023
2d44e7a
Automatically open file explorer
minh-hatchways Oct 6, 2023
fc08cba
Add in tsvsstate
minh-hatchways Oct 6, 2023
dc51d3f
Add in ability for rooms
minh-hatchways Oct 6, 2023
eb5c44b
Add in newly generated files
minh-hatchways Oct 6, 2023
5e8a891
Clean up cursor issues
minh-hatchways Oct 6, 2023
aff74bd
Run npx prettier
minh-hatchways Oct 6, 2023
0422fb4
Fix merge conflicts
minh-hatchways Oct 10, 2023
0170d40
Fix package.json
minh-hatchways Oct 10, 2023
8c90cd4
Run prettier
minh-hatchways Oct 10, 2023
6ec5489
Add in all the changes so far
minh-hatchways Oct 11, 2023
3d8d98b
Fix initialization issues
minh-hatchways Oct 11, 2023
1383766
Add our own decorator
minh-hatchways Oct 11, 2023
3e093a2
Working version for the file decoration
minh-hatchways Oct 11, 2023
f667f12
Put back cursor
minh-hatchways Oct 11, 2023
d74f43a
Dispose file cursor when user disconnect
minh-hatchways Oct 11, 2023
f0da6d8
Fix more code
minh-hatchways Oct 11, 2023
98745bd
Run prettier
minh-hatchways Oct 11, 2023
c3617cf
Fix code
minh-hatchways Oct 11, 2023
1c92dba
Auto open files
minh-hatchways Oct 11, 2023
a41762f
Run prettier
minh-hatchways Oct 11, 2023
c225fe1
Use env var files instead
minh-hatchways Oct 12, 2023
5e98e22
Run prettier
minh-hatchways Oct 12, 2023
491bb04
Address Evelyn's comments
minh-hatchways Oct 13, 2023
1f5ba4f
Merge remote-tracking branch 'origin/main' into socket
minh-hatchways Oct 13, 2023
61e73f1
Fix .env file
minh-hatchways Oct 13, 2023
47f5ed6
Remvoe out and dist folder
minh-hatchways Oct 13, 2023
58d42e1
Remove .vsix file
minh-hatchways Oct 13, 2023
28fb17c
Remove globalName var
minh-hatchways Oct 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
# hatchways-live-interviewing README
## To debug

This is the README for your extension "hatchways-live-interviewing".

## To run
```
npm install

npm run watch
npm run watch

node server/index.js -- To run the socket server locally on http://localhost:4000
```

Then open the project in Visual Studio Code.
Go to `extension.ts` then press F5.
Go to `extension.ts` then press F5.

## To install as an extension

```
npm install -g @vscode/vsce

cd live-interviewing
cassandrale179 marked this conversation as resolved.
Show resolved Hide resolved

vsce package
```

cassandrale179 marked this conversation as resolved.
Show resolved Hide resolved
You should see a file titled `hatchways-live-interviewing-0.0.1.vsix` being generated.

## Commands
Open Command Palette (on MacOS, it would be Cmd + Shift + P)
Then choose Hatchways:Welcome to see the Hatchways Welcome page
Go to Visual Studio Code, click on Extensions. Click on the three dots "..." on the topmost right corner > Install from VSIX... > Select hatchways-live-interviewing-0.0.1.vsix
Loading