2017 © Pedro Peláez
 

library user_url_shortener

Just a test module for UserBundle.

image

alisakopric/user_url_shortener

Just a test module for UserBundle.

  • Wednesday, August 31, 2016
  • by Bharakuda
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

URL Shortener is a Symfony 3 App for shortening URL's

Note: This project is still undergoing a lot of changes, (*1)

Installation

Installation is a quick 5 step process:, (*2)

  1. Clone repository
  2. Download UserBundle using composer
  3. Enable the Bundle
  4. Configure your application
  5. Create app database

1. Clone repository

Create new project directory and execute git clone command inside of it, (*3)

git clone https://alisa_kopric@bitbucket.org/sightsdigitalteam/url_shortener.git

2. Download UserBundle using composer

Simply execute following command, (*4)

composer update

information required by the install script: - database_host: - database_port: - database_name: - database_username: - database_password: - mailer_transport: - mailer_host: - mailer_username: - mailer_password: - secret:, (*5)

3. Enable UserBundle module

Register the bundle in AppKernel.php:, (*6)

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new UserBundle\UserBundle(),
    );
}

4. Configure your application

Configuration in your config.yml: -> uncomment resource line, (*7)

app/config/config.yml, (*8)

imports:
#    - { resource: "@UserBundle/Resources/config/services.yml" }

Configuration in your routing.yml: -> uncomment lines, (*9)

app/config/routing.yml, (*10)

#user:
#    resource: "@UserBundle/Controller/"
#    type:     annotation
#    prefix:   /

5. Create app database

Prepare your database, (*11)

This implementation takes care about building the database and creating your schema., (*12)

php bin/console doctrine:database:create
php bin/console doctrine:schema:update --force

The Versions

31/08 2016

dev-master

9999999-dev https://github.com/Bharakuda/user_url_shortener.git

Just a test module for UserBundle.

  Sources   Download

MIT

url shortener