Giter Site home page Giter Site logo

padagraphfoldr's Introduction

Introduction

This project is a clone of g0v's Hackfoldr. It is designed to fit the needs of Padagraph.io an to be more easily customisable.

Written in ScalaJS, all the code runs on the client side

Getting started

All you need to start is sbt

clone the repository

$ git clone [email protected]:padagraph/PadagraphFoldr.git

go to the root of the repo and run sbt

$ cd PadagraphFoldr
$ sbt

from sbt shell, run fastOptJS to build the dev version of the js Or fullOptJS for production.

Once the js file is compiled, it will be located in the target/scala-2.12/ directory.

Hosting

Set the path in the index.html file according to your production setup.

For the routes to be analysed properly, the webserver needs to be configured to serve index.html for any subpath of the app (except for static files)

Here is an example of configuration for an nginx server used during development

server {
        listen   80;
        server_name  some_name; # (set it in /etc/hosts)
        access_log  /tmp/access.log;
        error_log  /tmp/error.log debug;

        root <path to>/PadagraphFoldr/target/scala-2.12;

        location / {
                # autoindex on;
                try_files $uri $uri/ /classes/index.html;
        }
}

TODO: show how to host directly from github pages

padagraphfoldr's People

Contributors

a-tsioh avatar

Stargazers

jon โš avatar

Watchers

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