https://github.com/astronomersiva/stellarium-web
An open source planetarium running in your web browser
https://github.com/astronomersiva/stellarium-web
Last synced: about 2 months ago
JSON representation
An open source planetarium running in your web browser
- Host: GitHub
- URL: https://github.com/astronomersiva/stellarium-web
- Owner: astronomersiva
- Created: 2018-07-11T03:13:07.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-10T11:27:00.000Z (almost 7 years ago)
- Last Synced: 2025-01-21T20:49:05.908Z (3 months ago)
- Language: Vue
- Size: 1.3 MB
- Stars: 7
- Watchers: 3
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-AGPL-3.0.txt
Awesome Lists containing this project
README
# stellarium-web client
A light version of Stellarium running in the browser. It is mostly Graphical
User Interface for Stellarium Web Engine, a light C sky display engine, compiled into
Web Assembly.[stellarium-web.org](https://stellarium-web.org)
This is a Vuejs project, which can generate a fully static webpage with webpack.
## Build setup using Docker
Make sure docker is installed, then:``` bash
# generate the docker image
make setup# and run the development version
make dev# compile a production version of the site with minification
make build# and finally to host it on a test server (http://localhost:8000)
make start
```## Build Setup without Docker
``` bash
# install dependencies
yarn# serve with hot reload at localhost:8080
yarn run dev# build for production with minification
yarn run build
```For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).