https://github.com/v-adhithyan/loan-app
https://github.com/v-adhithyan/loan-app
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/v-adhithyan/loan-app
- Owner: v-adhithyan
- Created: 2023-12-10T02:53:37.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-11T04:44:05.000Z (over 1 year ago)
- Last Synced: 2025-01-08T17:44:09.004Z (5 months ago)
- Language: Python
- Size: 167 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# loan-app
## Tech stack
- Backend : Python + Django
- Frontend : Typescript + Next.js
- Frontend will call REST API's from backend.## CI
- CI for linting & testing backend code using Github Actions is available.
## How to run?
### Backend
- `cd backend`
- Create a virtualenv if it doesn't exist `python -m venv venv`
- Activate virtualenv `source venv/bin/activate`
- Install requirements `pip install -r requirements_dev.txt`
- Start the server `python manage.py runserver`
- Backend will be available at 'localhost:8000'### Frontend
- `cd frontend`
- `npm install`
- `npm run dev`
- Access frontend at http://localhost:3000
- UI will look like this. ## Directory structure
- backend/loan_app contains all backend logic related to the app.