https://github.com/buuntu/stocks-analysis
Looking at stock data using Django and React
https://github.com/buuntu/stocks-analysis
Last synced: 4 months ago
JSON representation
Looking at stock data using Django and React
- Host: GitHub
- URL: https://github.com/buuntu/stocks-analysis
- Owner: Buuntu
- Created: 2019-02-18T04:38:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:37:13.000Z (over 3 years ago)
- Last Synced: 2024-12-30T22:44:26.587Z (over 1 year ago)
- Language: JavaScript
- Size: 187 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stocks-analysis
Looking at stock data using Django and React
## API
Uses pandas_datareader and IEX for API calls
## Installation
### Backend
```
pip install -r requirements.txt
./manage.py runserver
```
### Frontend
```
cd frontend
npm install
npm start
```
### Deployment
```
npm run build
./manage collectstatic
./manage runserver
```