Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
css
 
 
 
 
 
 
 
 
 
 
 
 
js
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Website-2020

Source for the website for Ebean ORM.

How to build the website

1. Clone website-source repo

2. Make a destination directory

mkdir website-dest

2. Download avaje-website-generator-2.1.2.jar

3. run the website generator

java -jar avaje-website-generator-2.1.2.jar -s website-source/ -d website-dest/

This website generator will:

  • generate content into website-dest
  • continue to run (until CTRL-C) watching the source directory
  • When any source file changes it will re-generate the changed content

4. setup nginx to serve the website-dest directory

For example:


root /home/rob/work/website-dest;

index index.html index.htm;

server_name _;

location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri.html $uri/ =404;
}

About

Generated public website - source is in website-source repository

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.