Open
Conversation
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Merging latest to develop
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
bassa CLI for server maintainer
…-setup-file Import pip functionality according to version in setup file
…package Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
added file not found exception
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
User will able to see files in a grid view with appropriate file type icons
Download single file from server in a single click
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
Signed-off-by: Nirmal Sarswat <nirmalsarswat400@gmail.com>
created static UI components for queued, completed lists and appbar
Updated dockerfile for Bassa API server with necessary changes and optimization
added authentication and tested POST, GET requests in the React app
…aying completed and queued downloads
completed routing in the application and added GET requests for displaying completed and queued downloads
Integrated a WSGI (Gunicorn) to Bassa API server
Defined endpoints for file compression and added missing imports in sender.py
Updated documentation for Bassa
Updated and working version of development dockerfile for Bassa UI
Implemented a working production UI dockerfile for Bassa
Improved Travis CI builds for Bassa
Python script to setup db
Implemented a Dockerfile for Aria2c RPC server
Getting Bassa ready for container based deployment using docker-compose
* Fix docker build error for Web and update docs * Update docker labels and add required args in docker-compose * Update production docker-compose configuration * revert passing args in docker-compose config
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#887
@saisankargochhayat
You can use the
pipenv install -rcommand to install the packages listed in arequirement.txtfile into your virtual environment, and generate a Pipfile for your project.For example, to install the packages listed in a
requirement.txtfile located in the current directory, you can use the following command:pipenv install -r requirement.txtThis will install the packages listed in the
requirement.txtfile, and create a Pipfile in your project directory, which will contain the dependencies for your project.You can also specify the path to the
requirement.txtfile if it is located in a different directory. For example:pipenv install -r /path/to/requirement.txtNote that the
requirement.txtfile should contain a list of package names and version numbers, one package per line. For example:numpy==1.18.5pandas==1.1.2