An open API service indexing awesome lists of open source software.

https://github.com/dibsonthis/vortex-dist


https://github.com/dibsonthis/vortex-dist

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

Vortex Scaffold

A self contained environment for Vortex programs. It includes everything you will need to write and run Vortex programs in one simple environment:

- The Vortex interpreter
- Vortex standard library modules
- Vortex config file
- Basic source directory scaffold
- A run script to launch your application

If you wish to make changes to the scaffolded directory, make sure to update the config file to point to the correct entry point.

To run the program, simply call `./run` in the root directory. This will launch the intepreter with the provided entry point.

Simply run the below command in a new directory to scaffold a Vortex environment:

Mac:
```
curl https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/mac/scaffold | bash
```

Linux:
```
curl https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/lin/scaffold | bash
```

Windows:
```
curl -LO -k https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/win/scaffold.bat
./scaffold.bat
```

Or if you've cloned a scaffolded Vortex repo that does not include the necessary binaries, you can run:

Mac:
```
curl https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/mac/update | bash
```

Linux:
```
curl https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/lin/update | bash
```

Windows:
```
curl -LO -k https://raw.githubusercontent.com/dibsonthis/vortex-dist/main/win/update.bat
./update.bat
```

To view and compile Vortex source code, including the source code for the provided modules, [visit the official repository](https://github.com/dibsonthis/vortex).