Skip to content
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

Migrate to jppm #1

Open
wants to merge 2 commits into
base: master
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

out/
.gradle/
.idea/
Expand All @@ -7,6 +6,8 @@ out/
*.tmp

build/
node_modules/
resources/

vendor/
package.*.yml
Expand Down
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ jdk:
- oraclejdk8

before_install:
- wget -O - https://github.com/jphp-compiler/jphp/releases/download/jppm-0.3.0/jppm-setup-0.3.0.sh | bash
- wget -O - https://github.com/jphp-compiler/jphp/releases/download/jppm-0.4.1/jppm-setup-0.4.1.sh | bash

script:
- jppm install
- jppm test
- jppm build
38 changes: 11 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,22 @@
# Wizard Framework

[![Build Status](https://travis-ci.org/jphp-group/wizard-framework.svg?branch=master)](https://travis-ci.org/jphp-group/wizard-framework)
[![Build Status](https://travis-ci.org/MWGuy/wizard-framework.svg?branch=master)](https://travis-ci.org/MWGuy/wizard-framework)

Wizard Framework is a jphp framework for the web/mobile/desktop.
Wizard Framework is a jphp framework for the web/desktop.

# How to taste?

If you want to see our framework in action, you can use the `sandbox` project in the `sandbox/` directory.
If you want to see our framework in action, you can use the `sandbox` project in the `sandbox-web/` directory.

Before you should install Java 8 and run the `npmInstall gulpInstall` gradle task (it can take a lot of time):
```
cd <path_to_wizard_dir>
Before you should install Java and jppm then run the `jppm build` command.

// for linux
chmod +x gradlew
./gradlew npmInstall installGulp
Then you can run wizard sandbox

// for windows
gradlew.bat npmInstall installGulp
```bash
cd path/to/wizard/sandbox-web
jppm update
jppm start
```

Then you can run wizard sandbox:

```
cd <path_to_wizard_dir>

// for linux
./gradlew sandboxWeb

// for windows
gradlew.bat sandboxWeb
```

Then open `http://localhost:5000/` in your browser (opera, chrome or firefox). Your browser
must support the WebSocket feature.


Then open `http://localhost:5000/` in your browser (opera, chrome or firefox).
Your browser must support the WebSocket feature.
8 changes: 0 additions & 8 deletions modules/wizard-ide-support/build.gradle

This file was deleted.

232 changes: 0 additions & 232 deletions modules/wizard-ide-support/src-php/framework/ide/IdeComponent.php

This file was deleted.

Loading