A prompt to boost your lazy "do this" prompts. Install with one of the buttons below.
The following table outlines the detailed functional requirements of The Urlist website.
| Requirement ID | Description | User Story | Expected Behavior/Outcome |
|---|---|---|---|
| FR001 | Creating a New URL List | As a user, I want to be able to start a new, empty list so I can begin adding URLs. | The system should provide a clear way for the user to initiate the creation of a new list, potentially presenting an empty list view or an "add new list" button. |
| FR002 | A |
| // Update globs depending on your framework | |
| --- | |
| name: tailwind_v4 | |
| description: Guide for using Tailwind CSS v4 instead of v3.x | |
| globs: ["**/*.{js,ts,jsx,tsx,mdx,css}"] | |
| tags: | |
| - tailwind | |
| - css | |
| --- |
| in your editor (i used phpstorm ctrl+shift+f for find and replace in all files of a specific folder): | |
| find : (?<=class=["'][^"']*)([0-9a-zA-Z_-]+\s*)(?=[^"']*["']) | |
| replace : tw-$1 |
composer require omnilight/yii2-scheduling to install the scheduling packageconfig/schedule.php file to house your scheduled processesconfig/app.php to include the schedule component details to run the Craft command (instead of yii)php craft schedule/run --scheduleFile=@config/schedule.php to process any scheduled operations.💡 Tip: You likely want to run php craft schedule/run --scheduleFile=@config/schedule.php on a cron job that fires every minute!
| <?php | |
| /** | |
| * Database Connection Tester | |
| * A quick-and-dirty standalone script for checking PHP’s connection to a | |
| * MySQL (or MariaDB) or PostgreSQL database. | |
| * | |
| * To use, enter the settings below and run the following from your terminal: | |
| * ``` | |
| * php -f db-test.php |
| # Change default ImageMagick configuration to allow additional file types | |
| ARG BASE_IMAGE | |
| FROM $BASE_IMAGE | |
| ADD policy.xml /etc/ImageMagick-6/policy.xml |
| <?php | |
| namespace Deployer; | |
| require 'recipe/common.php'; | |
| require 'recipe/rsync.php'; | |
| set('application', 'workingconcept/wrkcpt-craft'); | |
| set('repository', 'https://github.com/workingconcept/wrkcpt-craft'); | |
| $shared = [ |
| name: Forge Deploy | |
| on: | |
| push: | |
| branches: | |
| # - master | |
| - develop | |
| jobs: | |
| deploy: |
| <section x-data="{showModal: false, showLoading: false, html: ''}"> | |
| <button | |
| @click="html='loading...'; showLoading = true; showModal = !showModal; | |
| fetch('{{ entry.url }}', { | |
| method: 'GET', | |
| headers: { | |
| 'X-Requested-With': 'XMLHttpRequest', | |
| }, | |
| }) |