Skip to content

dzlabing/open-rmbt-website

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

700 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RTR-NetTest Website

This repository hosts the web page sources for www.netztest.at

Requirements

For building the website, the following tools are needed

  • NodeJS
  • NPM
  • Git

Building and running the Website

  1. Build

    npm install
    node build netztest 

    It is possible to live-rebuild changed sources by running

    node build netztest watch
  2. Deploy

    Use the build-directory as the root directory for your webserver, e.g. in conjunction with the http-server node module (npm install http-server -g)

    http-server build -p 8081

    Now, the website is ready to use: http://localhost:8081/en

    For routing, the .html file extension is omitted. This can be done e.g. using a .htaccess file with the following content in the build folder.

    Options +Includes
    AddHandler server-parsed .html
    
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule (.*) $1.html [L]
    

Get in Touch

About

Website sources for www.netztest.at

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 89.2%
  • HTML 6.3%
  • SCSS 4.2%
  • Other 0.3%