-
Notifications
You must be signed in to change notification settings - Fork 15
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
Showing
1 changed file
with
25 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 |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# setup | ||
|
||
Vanilla distribution, including example projects and dependencies | ||
|
||
<br> | ||
|
||
### Development | ||
|
||
To use latest up-to-date repositories alongside avalon-setup while developing, you can override the submodules used internally via environment variables. | ||
|
||
**avalon-local.bat** | ||
|
||
```bat | ||
@echo off | ||
set AVALON_CORE=<path/to/avalon-core> | ||
set AVALON_LAUNCHER=<path/to/avalon-launcher> | ||
set AVALON_PROJECTS=<path/to/avalon-examples> | ||
set AVALON_CONFIG=<my_config> | ||
set AVALON_LABEL=<my label> | ||
set AVALON_SENTRY=<replace me> | ||
set AVALON_MONGO=mongodb://<mongodb-address> | ||
set PYTHONPATH=<path/to/config>;%PYTHONPATH% | ||
python <path/to/avalon-setup>/avalon.py %* | ||
``` |