-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Davi A. Wasserberg
committed
Feb 12, 2022
1 parent
b27cd63
commit 633428f
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
java adoptopenjdk-8.0.322+6 | ||
gradle 6.8.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# ws3d | ||
WorldServer3D - A Virtual Environment for Experiments with Artificial Creatures | ||
|
||
## Utils for setup (optional) | ||
|
||
### ASDF | ||
[asdf github](https://github.com/asdf-vm/asdf) | ||
|
||
[Install asdf](http://asdf-vm.com/guide/getting-started.html#_1-install-dependencies) | ||
|
||
* what is asdf? | ||
tldr: it's a package manager to rule all package managers | ||
|
||
* is it mandatory to run this project? | ||
tldr: no, there are other methods | ||
|
||
* what is the advantage of `asdf`? | ||
tldr: once installed, run `./utils/asdf-setup.sh` | ||
|
||
You have a running project :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/sh | ||
|
||
asdf plugin-add java https://github.com/halcyon/asdf-java.git | ||
asdf plugin-add gradle https://github.com/rfrancis/asdf-gradle.git | ||
asdf install | ||
gradle run |