Coder Social home page Coder Social logo

lmms.io's Introduction

lmms.io

This repo contains the source for LMMS's new website located at http://lmms.io.

How to test the website locally

  1. Clone the code

    $ git clone https://github.com/LMMS/lmms.io.git
  2. Get Composer

    This project uses Composer for dependency management. You'll have to fetch those dependencies using composer. For this, you must have Composer installed on your system. For quickly installing Composer locally on *nix, run:

    $ cd lmms.io
    $ curl -sS https://getcomposer.org/installer | php

    For installing Composer locally on Windows (i.e. Wamp), run:

    > cd lmms.io
    > php -r "eval('?>'.file_get_contents('https://getcomposer.org/installer'));"

    Note: For this to work on Windows you need the php.exe processor to be on your path, usually located in c:\wamp\bin\php\phpx.y.z

    For instructions for other OSs or for installing globally, visit Composer's Getting Started document.

  3. Fetch dependencies using composer

    When you downloaded composer locally using the instructions above, fetch the dependencies by running

    $ php composer.phar install

    You'll have to run this comand every time the dependencies in composer.json change.

  4. Configure local server

    Apache:

    <Directory /home/user/lmms.io/public/>
    	# add fallback resource to Apache config
    	FallbackResource /index.php
    </Directory>

    Nginx:

    # go to our front controller if none of them exists
    location / {
    	try_files $uri $uri/ /index.php?$args;
    }
  5. Start local server

    Start a local PHP server by running from lmms.io/public:

    $ php -S localhost:8000 -t ./

    You can then open http://localhost:8000/ in a browser.

lmms.io's People

Contributors

tresf avatar lukas-w avatar umcaruje avatar secondflight avatar csimons avatar spekular avatar

Watchers

James Cloos 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.