Giter VIP home page Giter VIP logo

tbaltrushaitis / mp3web Goto Github PK

View Code? Open in Web Editor NEW
10.0 4.0 4.0 2.6 MB

:headphones: Web MP3 Player :play_or_pause_button: and Media Library :musical_note: Manager

Home Page: http://bit.ly/mp3web

License: MIT License

PHP 15.66% HTML 36.25% JavaScript 30.45% CSS 5.27% Makefile 11.10% Smarty 1.28%
media-player mediaplayer media-library mp3player web-mp3-player laravel requirejs jquery bootstrap music-library

mp3web's Introduction

Standard Version License

Web MP3 Player 🎧 and Media Library Manager

Web MP3 Player Logo

mp3 web player audio library manager


Live Demo

πŸ‘‰ Premium Music Collection πŸ‘ˆ


:octocat: Credits

Scope Role Name Version Description
Host Installer Composer 1.6.3 Dependency Manager for PHP
Back Engine Laravel 5.5.49 PHP Framework
Front Library require.js 2.3.6 A file and module loader for JavaScript
Front Library jQuery 3.5.1 JavaScript Library
Front Library Lodash 4.17.15 A modern JavaScript utility library delivering modularity, performance & extras.
Front Framework Bootstrap 3.3.7 HTML, CSS, and JS framework
Front Library Font-Awesome 4.7.0 The iconic font and CSS toolkit
Front Library Noty 2.4.1 A Dependency-free notification library
Front Library animate.css 3.7.2 A cross-browser library of CSS animations
Front Plugin BootstrapΒ Tagsinput 0.8.0 jQuery tags input plugin based on Twitter Bootstrap

Usage

1 - Download

$ git clone -b latest https://github.com/tbaltrushaitis/mp3web.git && cd mp3web

2 - Configure

Edit file src/.env.rc (or create your own, e.g. src/.env.rc.local) - change values of build variables in it (e.g. DB_HOST, APP_URL, etc.)

3 - Build

With make - GNU make utility to maintain groups of programs

In fact you just need to type in your terminal:

$ make

To get additional info and usage examples type make usage|help|list command:

$ make help
          β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
          β”‚   __  __ _____ ______          ________ ____    β”‚
          β”‚  |  \/  |  __ \___ \ \        / /  ____|  _ \   β”‚
          β”‚  | \  / | |__) |__) \ \  /\  / /| |__  | |_) |  β”‚
          β”‚  | |\/| |  ___/|__ < \ \/  \/ / |  __| |  _ <   β”‚
          β”‚  | |  | | |    ___) | \  /\  /  | |____| |_) |  β”‚
          β”‚  |_|  |_|_|   |____/   \/  \/   |______|____/   β”‚
          β”‚                                                 β”‚
          β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜

---------------------------------------------------------
Available commands:
make
  list        - LIST all targets defined in this makefile
  clean       - CLEAR directories and delete files
  setup       - check for php, node and bower installations
  engine      - setup and build engine
  build       - BUILD project from sources
  release     - COMPILE project distro
  deploy      - DEPLOY compiled project to "webroot" directory
  all         - Run all operations for current stage from NODE_ENV file
  rebuild     - Execute [build, release, deploy] tasks
  redeploy    - Execute [release, deploy] tasks
---------------------------------------------------------

4 - Deploy

$ make all

5 - Enjoy


Directory structure

.
β”œβ”€β”€ .bowerrc              --> bower configuration
β”œβ”€β”€ .gitattributes        --> git editor settings
β”œβ”€β”€ .gitconfig            --> git client settings
β”œβ”€β”€ .gitignore            --> specifies untracked files to git
β”œβ”€β”€ .gitmodules           --> git submodules definition
β”œβ”€β”€ .jshintignore         --> specifies untracked files to jshint
β”œβ”€β”€ .npmrc                --> npm settings
β”œβ”€β”€ bower.json            --> specified third party libs & dependencies for frontend application
β”œβ”€β”€ gulpfile.js           --> configuration for gulp tasks
β”œβ”€β”€ Makefile              --> main orchestration scenario
β”œβ”€β”€ package.json          --> main project description file used by npm
β”œβ”€β”€ README.md             --> this file
β”œβ”€β”€ config                --> project configuration files
β”œβ”€β”€ dist                  --> compiled project
β”œβ”€β”€ node_modules          --> node modules
β”œβ”€β”€ src                   --> application sources
β”‚Β Β  β”œβ”€β”€ app               --> core code of server-side application
β”‚Β Β  β”‚   β”œβ”€β”€ Classes       --> project classes and objects
β”‚Β Β  β”‚   β”œβ”€β”€ Console       --> custom Artisan commands
β”‚Β Β  β”‚   β”œβ”€β”€ Events        --> houses event classes
β”‚Β Β  β”‚   β”œβ”€β”€ Exceptions    --> exception handler and is also a good place to hold any exceptions thrown by application
β”‚Β Β  β”‚   β”œβ”€β”€ Http          --> controllers, middleware, and form requests
β”‚Β Β  β”‚   β”œβ”€β”€ Jobs          --> TBD
β”‚Β Β  β”‚   β”œβ”€β”€ Listeners     --> N/A
β”‚Β Β  β”‚   β”œβ”€β”€ Mail          -->
β”‚Β Β  β”‚   β”œβ”€β”€ Notifications -->
β”‚Β Β  β”‚   β”œβ”€β”€ Policies      -->
β”‚Β Β  β”‚   β”œβ”€β”€ Providers     -->
β”‚Β Β  β”‚   β”œβ”€β”€ Rules         -->
β”‚Β Β  β”‚   β”œβ”€β”€ Repositories  -->
β”‚Β Β  β”‚   β”œβ”€β”€ Common        --> common factories, services, directives, filters, helpers for all project
β”‚Β Β  β”œβ”€β”€ bootstrap         --> files which bootstraps the framework
β”‚Β Β  β”œβ”€β”€ config            --> application configuration files
β”‚Β Β  β”œβ”€β”€ database          --> database migrations, model factories, and seeds
β”‚Β Β  β”œβ”€β”€ public            --> entry point for all requests entering your application
β”‚Β Β  β”œβ”€β”€ resources         --> contains views as well as raw, un-compiled assets such as LESS, SASS, or JavaScript
|   β”‚Β Β  β”œβ”€β”€ assets        --> folder for application assets
|   β”‚Β Β  β”‚   β”œβ”€β”€fonts      --> folder for application fonts
|   β”‚Β Β  β”‚   β”œβ”€β”€i18n       --> internationalization
|   β”‚Β Β  β”‚   β”œβ”€β”€img        --> folder for application images
|   β”‚Β Β  β”‚   β”œβ”€β”€css        --> application stylesheets and theme settings
|   β”‚Β Β  β”‚   β”œβ”€β”€js         --> javascript files
|   β”‚Β Β  β”‚      β”œβ”€β”€app     --> application scripts
|   β”‚Β Β  β”‚      β”œβ”€β”€lib     --> third party libs
|   β”‚Β Β  β”œβ”€β”€ views         --> raw Blade templates
β”‚Β Β  β”œβ”€β”€ routes            --> route definitions for application
β”‚Β Β  β”œβ”€β”€ storage           --> compiled Blade templates, sessions, caches, and other files generated by the framework
β”‚Β Β  β”œβ”€β”€ tests             --> automated tests
β”‚Β Β  β”œβ”€β”€ vendor            --> contains Composer dependencies

TODO List

  • Implement search through items.

CHANGELOG

See Changelog file for details


πŸ”— More Info


πŸ“† Developed on 11th of September 2016

♏

mp3web's People

Contributors

tbaltrushaitis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.