An open API service indexing awesome lists of open source software.

https://github.com/asifrahaman13/java-dependencies

An application to find all the dependencies inside the xml files of any Java Project. User needs to sign into the application, using the github and they can view all the available repositories and can request for the dependencies.
https://github.com/asifrahaman13/java-dependencies

fastapi google nextjs python

Last synced: about 2 months ago
JSON representation

An application to find all the dependencies inside the xml files of any Java Project. User needs to sign into the application, using the github and they can view all the available repositories and can request for the dependencies.

Awesome Lists containing this project

README

          

# xml dependencies

This is a full stack chat bot application that crawls through all the repository of the user and displays the same. The user can select his repository from the drop down list. Next the application will fetch all the dependencies found in the repository.

![alt text]()

## How to run the application:

First, clone the repository

```
git clone https://github.com/asifrahaman13/git.git
```
Next, open the terminal and enter into the backend folder.

```
cd backend/
```
Next, create a virtual environment.

```
virualenv venv
```

Activate the virtual environment. The following code works for UNIX based system( Linux and Max OS)

```
source venv/bin/activate
```

Install all the dependencies.

```
pip install -r requirements.txt
```

Change the name of .env.example to .env and enter the env variables.

Next, run the backend server.

```
uvicorn main:app --reload
```
Now in another terminal open the front end.

```
cd frontend/
```

Install the dependencies

```
yarn install
```
Change the name of .env.example to .env and enter the env variables.

Start your development server

```
yarn start
```