{"id":18386278,"url":"https://github.com/bethropolis/myurls","last_synced_at":"2026-05-21T05:03:09.142Z","repository":{"id":158866910,"uuid":"602579214","full_name":"bethropolis/myurls","owner":"bethropolis","description":"a simple laravel url shortener","archived":false,"fork":false,"pushed_at":"2023-07-16T15:03:39.000Z","size":634,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-12T03:54:31.151Z","etag":null,"topics":["laravel","php","url-shortener"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bethropolis.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-02-16T14:09:03.000Z","updated_at":"2023-07-16T15:04:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"bcc1402a-6309-48eb-bc57-32c5e4a1f403","html_url":"https://github.com/bethropolis/myurls","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bethropolis/myurls","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmyurls","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmyurls/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmyurls/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmyurls/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bethropolis","download_url":"https://codeload.github.com/bethropolis/myurls/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bethropolis%2Fmyurls/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265497961,"owners_count":23777092,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["laravel","php","url-shortener"],"created_at":"2024-11-06T01:21:19.937Z","updated_at":"2026-05-21T05:03:04.097Z","avatar_url":"https://github.com/bethropolis.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"./.githubassets/cover.svg\" width=\"400\" alt=\"MyURLs Logo\"\u003e\u003c/p\u003e\n\n\n## About MyURLs\n\nA simple url shortener made with laravel + tailwindcss.\n\n### features\n- user authenticatiom\n- URL shortening and redirection\n- Expiration dates for short URLs\n- Click tracking analytics\n\n### preview\n\n![Alt text](.githubassets/welcome.png)\nwelcome screen\n\n![Alt text](.githubassets/dashboard.png)\ndashboard\n\n![Alt text](.githubassets/create.png)\nshortener\n\n\n### installation\n\n#### 1. Prerequisites:\n- Make sure you have PHP version 8+ installed on your system. You can check by running the following in your terminal.\n```\nphp -v\n```\n\n- Install Composer, a dependency manager for PHP. You can download it from the official website: https://getcomposer.org/.\n\n- Install MySQL, a popular database system. You can download and install MySQL from the official website: https://dev.mysql.com/downloads/ or You can use a server stack like `Xampp` or `Wamp` which comes pre-installed with PHP and MySQL.\n\n- Visit the official Node.js website: https://nodejs.org/. Download the appropriate installer for your operating system and run it. Run the following command to verify that Node.js and npm are installed: \n```\nnode -v\nnpm -v\n```\n\n\n\n#### 2. Clone the repository:\n\nOpen your terminal and navigate to the directory where you want to install the app.\nRun the following command to clone the repository: \n\n```\ngit clone https://github.com/bethropolis/myurls.git\n```\n\n#### 3. Install dependencies:\n\nNavigate into the app's directory: \n\n```bash\n cd myurls\n ```\n\nRun the following command to install the app's dependencies using Composer and npm:\n\n```bash\n# composer\ncomposer install \n# npm\nnpm install\n```\n\n#### 4. Configure the environment:\n\nMake a copy of the `.env.example` file and rename it to `.env`:\n```\n cp .env.example .env\n ```\n\n\n#### 5. Generate an application key:\n\n```bash\n php artisan key:generate\n```\n\n#### 6. Set up the database:\n\nCreate a new database called `myurls` onto your database manually.\nIf you have mysql environment installed you can run.\n```bash\nmysql -u your_username -p -e \"CREATE DATABASE myurls;\"\n```\nUpdate the `.env` file with the necessary database credentials: \n```\nDB_CONNECTION=mysql \nDB_HOST=127.0.0.1 \nDB_PORT=3306 \nDB_DATABASE=myurls\nDB_USERNAME=your_database_username\nDB_PASSWORD=your_database_password\n```\n\u003e note: your'll need to create the database called `myurls` or any other name according to the value of `DB_DATABASE`.\n\n#### 7. Migrate and seed the database:\n\nRun the following command to migrate the database tables: \n```bash\nphp artisan migrate\n```\n\n#### 8. Serve the application:\n   \nRun the following command to start the Laravel development server \u0026 vite server: \n```bash\nnpm run dev\nphp artisan serve\n```\nThe app will be accessible at `http://localhost:8000` in your browser.\n\nThat's it! You've successfully installed the app.\n\n\n\n## Intension\nI made this project to learn more about Laravel (so far I'm Loving it).\n\n## License\nMy favourite license, [MIT license](https://opensource.org/licenses/MIT) \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethropolis%2Fmyurls","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbethropolis%2Fmyurls","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbethropolis%2Fmyurls/lists"}