Pinky Promise is a simple Flask application for creating, viewing, and signing promises. Each promise has a description, a due date, and a list of signatures.
Clone the repository:
git clone https://github.com/ha1fdan/pinkypromise.git
cd pinkypromise
Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
Install the dependencies:
pip install -r requirements.txt
Run the application:
python app.py
Open your browser and navigate to:
http://127.0.0.1:5000/
pinky-promise/
│
├── app.py
├── templates/
│ ├── 404.html
│ ├── base.html
│ ├── create_promise.html
│ └── view_promise.html
├── promises.json
├── requirements.txt
└── README.md
Contributions are welcome! Please follow these steps:
git checkout -b feature-name
.git commit -m 'Add feature'
.git push origin feature-name
.This project is licensed under the MIT License. See the LICENSE
file for details.
Built with 💖 and Flask.