-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More welcoming onboarding experience (#11)
- Loading branch information
Showing
5 changed files
with
131 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
# testaustime-vscode | ||
# Testaustime Visual Studio Code extension | ||
|
||
Official Testaustime VSCode extension. | ||
<center> | ||
<img src="media/hero.png" height="250" alt="Visual Studio Code editor on left side with extension enabled. Testaustime.fi statistics page on the right."> | ||
</center> | ||
|
||
Testaustime is the ultimate tool for tracking time of your coding sessions. Show the world how dedicated you are to your projects, now available for Visual Studio Code! | ||
|
||
Sign up for an account at https://testaustime.fi/register. | ||
|
||
## How to use? | ||
|
||
You need to open the command palette `CTRL+SHIFT+P` and select `Testaustime: Set API key` and then enter your API key. | ||
1. Open the command palette `CTRL+SHIFT+P` | ||
2. Select `Testaustime: Log in using browser` | ||
3. Log in | ||
|
||
Green check mark in status bar indicates that Testaustime is actively tracking your coding session. Click on the indicator to open testaustime.fi in your browser. | ||
|
||
You can configure more by searching `testaustime` in VSCode settings. | ||
You can configure more by searching `testaustime` in Visual Studio Code settings. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,7 @@ | ||
interface MeModel { | ||
id: number; | ||
friend_code: string; | ||
username: string; | ||
registration_time: string; | ||
is_public: boolean; | ||
} |