https://github.com/dibsonthis/vortex-dist
https://github.com/dibsonthis/vortex-dist
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dibsonthis/vortex-dist
- Owner: dibsonthis
- Created: 2023-11-13T03:33:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-03T05:44:00.000Z (over 2 years ago)
- Last Synced: 2025-05-18T15:13:54.884Z (about 1 year ago)
- Language: Shell
- Size: 26 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).