noweh / bigupload

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node php composer

GETTING STARTED

Description This project has been created for a search and development purpose. It allows a user to download heavy files such as videos, jpgs, pdf etc. using the Plupload library.

PROJECT INSTALLATION

1/ GET PROJECT FROM GIT

git clone https://github.com/Rapkalin/bigupload.git
git fetch
git checkout master

2/ VHOST configuration

Update your /etc/hosts

Add host on your local OS (On Windows, files is locate to C:\windows\System32\drivers\etc\)

127.0.0.1   bigupload.local

Update your /Applications/MAMP/conf/apache/extra/httpd-vhosts.conf

for http://bigupload.local


<VirtualHost *:80>
   ServerName bigupload.local
   DocumentRoot "${INSTALL_DIR}/your-folder-name/bigupload"

   ServerAlias bigupload.local.*

   <Directory "${INSTALL_DIR}/your-folder-name/bigupload">
     Options Includes FollowSymLinks
     AllowOverride All
   </Directory>
</VirtualHost>

3/ BACK-END INSTALL

3.1- Dependencies installation

  • From the root directory (/bigupload), enter the command:
compose install or compose i
  • This command will install the back dependencies linked to the composer.json

4/ FRONT-END INSTALL / BUILD

  • Nothing needed for the Front end install

About

License:GNU Affero General Public License v3.0


Languages

Language:JavaScript 96.0%Language:PHP 1.8%Language:CSS 1.0%Language:SCSS 0.7%Language:HTML 0.5%