-
-
Notifications
You must be signed in to change notification settings - Fork 494
MacOS Installation Guide
First clone and move to the project repository
git clone https://github.com/scorelab/Bassa.git && cd Bassa
Install Bassa dependencies.
sudo ./setup.sh
Open a new terminal window, move to downloads folder and start Aria2c server.
cd downloads/
aria2c --enable-rpc --rpc-listen-all
Start the MySQL service on your machine and open the MySQL terminal to type the command for creating the Bassa Database.
create database Bassa;
Exit from MySQL terminal and insert the Bassa database schema in to the created database.
cd db_schema/
mysql -u root -p Bassa < Bassa.sql
Configure the Bassa database credentials in components/core/DBCon.py database connector file.
If the environment variables are being used, modify as following :
_db=MySQLdb.connect("db", os.environ.get('YOUR_DB_USERNAME'), os.environ.get('YOUR_DB_PASSWORD'), os.environ.get('Bassa'))
If the environment variables are not configured and hardcoded strings are being used, replace as :
_db=MySQLdb.connect(host="localhost", user="YOUR_DB_USERNAME", passwd="YOUR_DB_PASSWORD",db= "Bassa")
Change directory to API code base and install python modules
cd components/core/
sudo python3 setup.py develop
Start Bassa API server
sudo python3 Main.py
Open a new terminal window, move to UI code base and install node modules.
cd ui/
sudo npm install
sudo npm install --global bower gulp-cli
Start the Bassa Web Client
gulp serve
You can access the Bassa Web Client at port 3000.