This project is a personal project – A vCard generator built with a ReactJS frontend and a Python Flask App backend.
- Clone the repository:
git clone [repository URL]
- Install the node dependencies:
cd card-gen-app
npm install
- Install the python dependencies:
cd card-gen-backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- cd into the backend folder:
cd card-gen-backend
- Activate the virtual environment:
source venv/bin/activate
- Start the Flask server:
flask --app gen --debug run
- cd into the app folder:
cd ../card-gen-app
- Start the React server:
npm start
- Open your browser and navigate to
http://localhost:3000
Contributions are welcome! If you find any issues or have suggestions for improvements, please open an issue or submit a pull request.