Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/humanitiesplusdesign/palladio-app
Palladio Application
https://github.com/humanitiesplusdesign/palladio-app
Last synced: 5 days ago
JSON representation
Palladio Application
- Host: GitHub
- URL: https://github.com/humanitiesplusdesign/palladio-app
- Owner: humanitiesplusdesign
- License: bsd-3-clause
- Created: 2016-02-24T15:31:00.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2021-10-21T05:17:35.000Z (about 3 years ago)
- Last Synced: 2024-07-14T13:35:14.626Z (4 months ago)
- Language: HTML
- Size: 9.48 MB
- Stars: 38
- Watchers: 6
- Forks: 8
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - humanitiesplusdesign/palladio-app - Palladio Application (others)
README
To build Palladio locally, first [make sure you have yarn installed](https://yarnpkg.com/en/docs/install), then use yarn to install the dependencies and build the assets:
```
git clone https://github.com/humanitiesplusdesign/palladio-app.git
cd palladio-app
yarn install
yarn build
```Then simply run a local web server from this directory -- if you have python installed, you can just use:
```
python -m http.server
```
or on python 2.x:
```
python -m SimpleHTTPServer
```To run on the latest version of main Palladio framework for testing purposes:
1) First clone the palladio framework repo, and from inside it run `yarn link`:
```
git clone https://github.com/humanitiesplusdesign/palladio.git
cd palladio
yarn link
```2) Then from within your clone of this (`palladio-app`) repo, run `yarn link palladio`.