WaitBin is a time-locked pastebin service that allows you to create content that remains hidden until a specific date and time. Perfect for surprises, scheduled announcements, or future messages.
🔗 Live URL: https://waitbin.vercel.app/
- 🔒 Time-Locked Content: Create pastes that remain hidden until your specified date and time arrives
- 🔗 Shareable Links: Get a unique link to share with anyone, showing a countdown until the content unlocks
- ✏️ Editable Bins: Use edit codes or create an account to manage and modify your WaitBins
- 👤 User Accounts: Register to easily manage all your created WaitBins in one place
WaitBin is readily available at https://waitbin.vercel.app/. Simply visit the website to start creating time-locked content right away.
If you wish to deploy your own instance of WaitBin:
- Python 3.6+
- MongoDB
- Clone the repository
git clone https://github.com/spignelon/WaitBin
cd WaitBin
- Create and activate a virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies
pip install -r requirements.txt
- Create a
.env
file with the following contents:
SECRET_KEY=your_secret_key
MONGODB_URI=mongodb://localhost:27017/
- Run the application
python run.py
The application will be available at http://localhost:5000
.
-
Creating a WaitBin:
- Go to the homepage and click "Create WaitBin"
- Enter your content, title, and set the unlock date/time
- Click "Create" to get your unique link and edit code
-
Viewing a WaitBin:
- Access the link provided upon creation
- If the unlock time has not arrived, you'll see a countdown
- Once unlocked, the content will be revealed
-
Editing a WaitBin:
- Visit the edit URL or click the edit button on your WaitBin
- Enter your edit code (or sign in if you created it while logged in)
- Modify the content, title, or unlock time and save changes
- Backend: Flask (Python)
- Database: MongoDB
- Authentication: Flask-Login
- Frontend: HTML, CSS (with Tailwind CSS and DaisyUI)
- Hosting: Vercel
We welcome contributions to improve WaitBin! Please follow these guidelines:
- Fork the repository
- Create a feature branch with a descriptive name (
git checkout -b feature/new-countdown-animation
) - Make your changes, ensuring they adhere to the project's coding style
- Write or update tests as necessary
- Update documentation to reflect your changes
- Commit with clear, descriptive messages
- Push to your fork (
git push origin feature/new-countdown-animation
) - Submit a Pull Request with a comprehensive description of changes
For major changes or features, please open an issue first to discuss what you would like to change.
This project is licensed under the GPL-3.0 License.