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.
- Host: GitHub
- URL: https://github.com/asifrahaman13/java-dependencies
- Owner: asifrahaman13
- Created: 2024-02-15T03:25:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-11T17:25:37.000Z (about 2 years ago)
- Last Synced: 2025-02-05T01:51:39.113Z (over 1 year ago)
- Topics: fastapi, google, nextjs, python
- Language: Python
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```