A modern banking application built with React, TypeScript, and Python backend.
Check out the live demo: https://koke1997.github.io/bankarstvo/
git clone https://github.com/koke1997/bankarstvo.git
cd bankarstvo
npm install
pip install -r requirements.txt
Run the frontend development server:
npm run dev
The app will be available at http://localhost:3000
Build the React application:
npm run build
This creates an optimized production build in the dist folder.
Run linting checks:
npm run lint
Run tests:
npm test
The application is automatically deployed to GitHub Pages on every push to the main branch. See docs/DEPLOYMENT.md for detailed deployment information.
bankarstvo/
├── frontend/ # React frontend application
│ ├── src/
│ │ ├── components/
│ │ ├── pages/
│ │ ├── router/
│ │ ├── services/
│ │ └── styles/
│ └── public/
├── api/ # Backend API
├── database/ # Database schemas and migrations
├── config/ # Configuration files
│ ├── webpack.config.js
│ └── tsconfig.json
├── k8s/ # Kubernetes configurations
├── .github/
│ └── workflows/ # CI/CD workflows
└── docs/ # Documentation
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
koke1997