A tool for analyzing the sustainability of S&P 500 companies.
-
Install Anaconda.
-
Clone the repository and create and activate the Python virtual environment:
git clone https://github.com/AkshayAshok2/stockstainable cd stockstainable conda env create -f environment.yml conda activate sh23
-
Download the sentiment analysis model:
python download.py
-
Install the required packages:
cd client npm install
-
Start the backend server:
cd ../server python server.py
-
In another terminal, start the frontend server:
cd stockstainable/client npm run dev
Now the application can be used at http://localhost:3000
in a Web browser.
To update the environment from environment.yml
:
conda env update -f environment.yml --prune