Skip to content
/ uka-url Public
forked from ukadev/uka-url

Simple URL Shortener using Blade Template System, Laravel Routing, Eloquent ORM and Bootstrap

License

Notifications You must be signed in to change notification settings

sonyon/uka-url

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Latest Stable Version Total Downloads Latest Unstable Version License

ukaURL

Simple URL Shortener using Blade Template System, Laravel Routing, Eloquent ORM and Bootstrap

Tech

This app is made using:

Demo

http://url.ukadev.com/

Installation

In order to get this app working, you have to execute just a few steps (you must have composer installed):

$ composer create-project ukadev/uka-url YOURFOLDER

Please note you have to replace YOURFOLDER with the name of the folder you want to install it

Then go to:

/app/Database/

and import the file named ukaurl.sql into your MySQL Database or just execute the next query:

CREATE TABLE `urls` (
  `id` char(6) COLLATE utf8_unicode_ci NOT NULL,
  `original` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `counter` int(6) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

And finally configure the database information inside the file:

/app/Config/Database.php

About

Simple URL Shortener using Blade Template System, Laravel Routing, Eloquent ORM and Bootstrap

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 73.6%
  • CSS 15.2%
  • JavaScript 9.8%
  • ApacheConf 1.4%