-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
401 additions
and
80 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,2 +1,17 @@ | ||
# Simple Linter | ||
This utility lints source code to verify if it conforms to [Google's Style Guide](https://github.com/google/styleguide). It uses [checkstyle](https://checkstyle.org/index.html) and [cpplint](https://github.com/google/styleguide/tree/gh-pages/cpplint) for the linting. Currently implemented languages: Java, C++. | ||
|
||
### Dependencies | ||
1. Node.js >= v10.11.3 | ||
2. Python >= v3.5 | ||
3. Java & JRE | ||
|
||
### Installation | ||
1. Install java and jre from deb package openjdk-9-jre-headless. Use command `sudo apt-get install openjdk-9-jre-headless` | ||
1. Install Node.js >= v10.11.3 using [node version manager](https://github.com/nvm-sh/nvm#install--update-script). | ||
2. Install java and jre from deb package openjdk-9-jre-headless or any other suitable version. Use command `sudo apt-get install openjdk-9-jre-headless`. | ||
3. [Download](https://www.python.org/downloads/) and install Python >= v3.5. | ||
4. Clone the repository and run `npm install` inside `api-service` and `app`. | ||
5. Start the Api service by running `npm run dev` inside `api-service`. | ||
6. Start the App by running `npm start` inside `app`. | ||
|
||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "api-service", | ||
"version": "0.1.0", | ||
"description": "Backend for code analyzer", | ||
"description": "Backend for code linter", | ||
"main": "dist", | ||
"scripts": { | ||
"build": "tsc", | ||
|
@@ -11,7 +11,7 @@ | |
}, | ||
"keywords": [ | ||
"Code", | ||
"analyzer", | ||
"linter", | ||
"backend" | ||
], | ||
"author": "Rajiv Ram V <[email protected]>", | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,2 @@ | ||
PORT=4000 | ||
REACT_APP_API_URI=http://localhost:3000 |
Oops, something went wrong.