No description
				
			
		| docs/images | ||
| src | ||
| .gitignore | ||
| README.md | ||
Stellar IDE
Stellar is an IDE for the Nova Language.
Quick Setup
To use this:
- 
Check out this repo. 
- 
Have Nova Python checked out somewhere. 
- 
Do this to create the create a virtualenv and install the dependencies: 
cd stellar
python -m venv .venv
. .venv/bin/activate
python -m pip install 'textual[syntax]' textual-dev
cd src
ln -sf <path to nova.py from nova-python checkout>
- Run it by:
cd stellar
python src/stellar.py
Type in code in the left pane and hit F2 to evaluate it. Use Control-q to exit the app. Use Control-p to see a command palette -- I haven't yet added anything to it, but you can change the theme and export an SVG screenshot with it!
To run it in a web browser run:
textual serve src/stellar.py