Skip to content

Commit

Permalink
Deployed to VS Marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
kaizu-xyz committed Oct 6, 2023
1 parent a0dfb9f commit dbd182f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 72 deletions.
2 changes: 1 addition & 1 deletion client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to the "neatcoder" extension will be documented in this file

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [0.1.1-alpha] - 05/10/2023
## [0.1.0] - 05/10/2023

### Changed
- `.neat` folder is now lazily created
Expand Down
71 changes: 3 additions & 68 deletions client/DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,73 +19,8 @@ Install the Extension Locally: In VS Code, go to the Extensions view by clicking

Reload VS Code: After installing the extension, you may need to reload the window or restart VS Code to activate it.

### Run the MockServer
## Publish extension

`cd server-test/`
To login: `vsce login NeatworkAi`

// transpile
`tsc mockServer.ts`

// run server
`node mockServer.js`

// to kill the server if not correctly shutdown
`lsof -i :1895`

`kill -9 <PID>`


// To listen in
`sudo tcpdump -i any port 1895`

### TEMP

- specs (OK)
- scaffold (TBD) --> at application start send everything
- jobs (OK) --> at application start send everything
- interfaces --> at application start send everything
- codebase (TBD) --> at application start send everything..

To add to Package JSON:

"menus": {
"view/title": [
{
"command": "extension.stopJob",
"when": "view == taskPoolView",
"group": "navigation@2"
},
{
"command": "extension.retryJob",
"when": "view == taskPoolView",
"group": "navigation@3"
},
{
"command": "extension.removeTask",
"when": "view == taskPoolView",
"group": "navigation@4"
},
],
}



commands: [{
"command": "extension.stopJob",
"title": "Stop Job",
"icon": "$(primitive-square)"
},
{
"command": "extension.retryJob",
"title": "Retry Job",
"icon": "$(refresh)"
},
{
"command": "extension.removeTask",
"title": "Remove Job",
"icon": "$(trash)"
},]



`npm install copy-webpack-plugin --save-dev`
Create a token at: `https://dev.azure.com/neatwork-ai/_usersSettings/tokens`
25 changes: 24 additions & 1 deletion client/LICENSE.md
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
This software is covered under a private license. Unauthorized distribution, modification, or use is prohibited.
NEATWORK.AI OÜ PROPRIETARY SOFTWARE LICENSE

Copyright © 2023, Neatwork.Ai OÜ. All rights reserved.

The software contained within this repository and accompanying materials is the property of Neatwork.Ai OÜ and is provided to the recipient under license for their use only. No rights are granted to the recipient beyond those explicitly stated in this license.

TERMS AND CONDITIONS:

1. **RESTRICTIONS**:
- You may not redistribute the software in any form, whether in its original form or as part of derivative works.
- You may not modify, adapt, reverse engineer, decompile, or disassemble the software.
- You may not remove or alter any proprietary notices on the software.

2. **COPYRIGHT**: All rights, title, and interest, including all copyrights and intellectual property rights, in the software remain with Neatwork.Ai OÜ.

3. **TERMINATION**: This license will terminate immediately without notice if you breach any term of this license.

4. **DISCLAIMER**: THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. NEATWORK.AI OÜ DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.

5. **GOVERNING LAW**: This license is governed by the laws of the Republic of Estonia.

Use, reproduction, or distribution of the software by any means other than as expressly permitted in this license is prohibited.

This license does not grant permission to use the trade names, trademarks, service marks, or product names of Neatwork.Ai OÜ.
3 changes: 2 additions & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"name": "neatcoder",
"displayName": "Neatcoder",
"description": "Turn your IDE into an AI Sofware engineer.",
"version": "0.1.1-alpha",
"version": "0.1.0",
"publisher": "NeatworkAi",
"repository": {
"url": "https://github.com/neatwork-ai/neatcoder-issues.git",
"type": "git"
Expand Down
2 changes: 1 addition & 1 deletion crates/neatcoder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neatcoder"
version = "0.1.1-alpha"
version = "0.1.0"
edition = "2021"

[lib]
Expand Down

0 comments on commit dbd182f

Please sign in to comment.