https://github.com/naffiq/qysqa
Yet another URL-shortener service
https://github.com/naffiq/qysqa
Last synced: about 2 months ago
JSON representation
Yet another URL-shortener service
- Host: GitHub
- URL: https://github.com/naffiq/qysqa
- Owner: naffiq
- License: mit
- Created: 2016-10-18T16:53:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-17T15:27:30.000Z (over 8 years ago)
- Last Synced: 2025-01-26T03:23:37.514Z (4 months ago)
- Language: PHP
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Qysqa
Yet another URL-shortener service
[](https://travis-ci.org/naffiq/qysqa)
[](https://codeclimate.com/github/naffiq/qysqa)### About
"Qysqa" translates as short from kazakh. This project is
powered with Lumen microframework from Laravel.
### Installation#### Installing dependencies
Clone the repository and install dependencies via [composer](https://getcomposer.org/download)```bash
$ composer install
```#### Setting up database
Configure the app by copying `.env.example` file to `.env` and setup
your database according to [Lumen documentation](https://lumen.laravel.com/docs/5.3/database#configuration)After that, run migrations with artisan
```bash
$ php artisan migrate
```#### Running tests
[Install phpunit](https://phpunit.de/) and run tests by this command
```bash
$ phpunit
```