Skip to content

Merge repos #385

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: gwt-site
path: 'target/generated-site/'
path: 'content/target/generated-site/'
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
target/
.idea/
gwt-site.iml
*.iml
.DS_Store
npm-debug.log
node/
node_modules/
src/main/site/assets/build/css/
src/main/site/assets/build/img/
src/main/site/assets/build/js/global.js
src/main/site/assets/build/js/global.min.js
content/src/main/site/assets/build/css/
content/src/main/site/assets/build/img/
content/src/main/site/assets/build/js/global.js
content/src/main/site/assets/build/js/global.min.js
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,31 @@

* See: https://www.gwtproject.org/makinggwtbetter.html#webpage

## Requirements
[Apache Maven](http://maven.apache.org) 3.8 or greater, and JDK 11+ in order to run.

## Building

If you have Grunt installed :
* build the assets using Grunt: `grunt`
* then run: `mvn clean install`
* after that you will find the generated documentation in `target/generated-site/`.
* after that you will find the generated documentation in `content/target/generated-site/`.

If you don't have Grunt installer :
* build the assets using Maven and Grunt plugin: `mvn clean install -Pgrunt`
* after that you will find the generated documentation in `target/generated-site/`.
* after that you will find the generated documentation in `content/target/generated-site/`.

### Running locally
Run the site locally for easy visual testing

Run without server:
* Change to the `target/generated-site` folder.
* Change to the `content/target/generated-site` folder.
* Open the `index.html` file in your browser.

Run with Maven:
* Run: `mvn jetty:run`
* Run: `mvn -pl content jetty:run`
* Open URL `http://localhost:9999` in your browser.

# gwt-site-webapp


File renamed without changes.
Loading