Skip to content

Live-Coding Workshop "Libless.js" bootstrap repository

Notifications You must be signed in to change notification settings

mariusbuescher/libless-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

libless.js : Web-Frontend ohne Ballast

Hochperformante Frontends ohne JavaScript und CSS Bibliotheken

Setup

Es ist lediglich ein Webserver nötig. Der Document Root sollte auf das htdocs-Verzeichnis des Projektes zeigen.

Beispiele

Beispiele um einen entsprechenden Server einzurichten.

php auf der Konsole

php -S 127.0.0.1:8080 -t htdocs

Apache

<VirtualHost *:80>
   ServerName libless.js.local
   ServerAdmin webmaster@localhost

   DocumentRoot "/path/to/project/htdocs"

   <Directory "/path/to/project/htdocs">
       Options +Indexes
       Order allow,deny
       Allow from all
   </Directory>

   DirectoryIndex index.php index.html

</VirtualHost>

About

Live-Coding Workshop "Libless.js" bootstrap repository

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published