Skip to content

Latest commit

 

History

History
68 lines (50 loc) · 1.76 KB

README.md

File metadata and controls

68 lines (50 loc) · 1.76 KB

image

Laravel Browser Paste App

A Laravel application that allows users to store text and generate a unique URL for easy access. The app provides options for setting time limits, view limits, and password protection for enhanced security.

Features

  • Text Storage with Unique URL: Enter text and generate a random URL to access it.
  • Time Limit: Set a time limit for how long the URL will be active.
  • View Limit: Restrict the number of times the URL can be accessed.
  • Password Protection: Optionally set a password to protect access to the text.

Installation

  1. Clone the repository:

    git clone https://github.com/fevziatanoglu/laravel-browser-paste-app.git
  2. Navigate to the project directory:

    cd laravel-browser-paste-app
  3. Install dependencies:

    composer install
    npm install
  4. Copy the .env.example file to .env:

    cp .env.example .env
  5. Generate an application key:

    php artisan key:generate
  6. Set up your database in the .env file and run migrations:

    php artisan migrate
  7. Compile assets:

    npm run dev
  8. Start the development server:

    php artisan serve

Usage

  1. Visit the application in your browser.
  2. Enter the text you want to store.
  3. Optionally set a time limit, view limit, and password.
  4. Generate the URL and share it as needed.
  5. The text can be accessed via the generated URL according to the limits and conditions you set.

Contributing

Contributions are welcome! Please submit a pull request or open an issue for any feature requests or bugs.