-
-
Notifications
You must be signed in to change notification settings - Fork 494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bassa fs #938
Open
V1C70RYG0D
wants to merge
280
commits into
master
Choose a base branch
from
bassa-fs
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bassa fs #938
Conversation
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
Signed-off-by: Nirmal Sarswat <[email protected]>
Merging latest to develop
Signed-off-by: Nirmal Sarswat <[email protected]>
Signed-off-by: Nirmal Sarswat <[email protected]>
Signed-off-by: Nirmal Sarswat <[email protected]>
bassa CLI for server maintainer
…-setup-file Import pip functionality according to version in setup file
…package Signed-off-by: Nirmal Sarswat <[email protected]>
Signed-off-by: Nirmal Sarswat <[email protected]>
Signed-off-by: Nirmal Sarswat <[email protected]>
added file not found exception
Signed-off-by: Nirmal Sarswat <[email protected]>
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 <[email protected]>
Signed-off-by: Nirmal Sarswat <[email protected]>
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
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 -r
command to install the packages listed in arequirement.txt
file into your virtual environment, and generate a Pipfile for your project.For example, to install the packages listed in a
requirement.txt
file located in the current directory, you can use the following command:pipenv install -r requirement.txt
This will install the packages listed in the
requirement.txt
file, 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.txt
file if it is located in a different directory. For example:pipenv install -r /path/to/requirement.txt
Note that the
requirement.txt
file should contain a list of package names and version numbers, one package per line. For example:numpy==1.18.5
pandas==1.1.2