https://github.com/soltanoff/business_card
It's just my personal business card
https://github.com/soltanoff/business_card
bootstrap5 business-card fastapi jinja2
Last synced: 10 months ago
JSON representation
It's just my personal business card
- Host: GitHub
- URL: https://github.com/soltanoff/business_card
- Owner: soltanoff
- License: mit
- Created: 2023-03-13T19:59:08.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-06-01T15:32:02.000Z (about 1 year ago)
- Last Synced: 2025-06-01T22:47:49.831Z (about 1 year ago)
- Topics: bootstrap5, business-card, fastapi, jinja2
- Language: HTML
- Homepage:
- Size: 44.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yet One Business Card
[](https://opensource.org/licenses/MIT)

## Introduction
Yet One Business Card is a simple and customizable business card generator. It allows you to create a personalized
business card with your personal and professional information, which is then generated in HTML format for easy sharing
and viewing in any web browser.
## Features
- Customizable personal and professional information.
- Supports various technical skills and social links.
- Generates a clean HTML business card.
## Installation
To set up the project, clone the repository and navigate to the project directory:
```shell
# Clone the repository
git clone
# Navigate to the project directory
cd business_card
```
## Usage
To customize your business card, edit the `template/content.py` file. This file contains a dictionary named `data` that
holds all the personal and professional information to be displayed on the card. You can modify fields such as `name`,
`job_title`, `email`, and various technical skills and social links.
Once you've made your changes, build the business card using the following command:
```shell
make build-index-page
```
Open the generated `index.html` in your web browser to view your business card.
## Development Tools
### Bandit
[Bandit](https://github.com/PyCQA/bandit) is a tool designed to find common security issues in Python code. It processes
each file, builds an AST from it, and runs appropriate plugins against the AST nodes. Once Bandit has finished scanning
all the files, it generates a report.
```shell
bandit -r .
```
### flake8
[flake8](https://github.com/PyCQA/flake8) is a Python tool that glues together pycodestyle, pyflakes, mccabe, and
third-party plugins to check the style and quality of some Python code.
```shell
flake8 .
```
## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more information.