API Demo for casparser
⭐ Demo :- https://cas.atomcoder.com
now includes support for capital gains computation
- backend
- python >= 3.8
- frontend
- node >= 16
- Setup python virtualenv and install dependencies
python3 -m venv venv
source venv/bin/activate
pip3 install -U setuptools wheel pip
pip3 install -r requirements.txt
- Setup .env (Optional)
Copy env.example
to .env and update values as required. This step is optional
and probably would be required only for production deployments
- Deploy API
uvicorn app:app --reload
- Install dependencies
npm install
- Run frontend
npm run dev