Skip to content

codereverser/casparser-web

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CASParser Demo

API Demo for casparser

Demo :- https://cas.atomcoder.com

now includes support for capital gains computation

Summary image

Detailed cg-detailed

Dependencies

  • backend
    • python >= 3.8
  • frontend
    • node >= 16

Setup

Backend

  1. 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
  1. 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

  1. Deploy API
uvicorn app:app --reload

Frontend (development)

  1. Install dependencies
npm install
  1. Run frontend
npm run dev