Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mabasic/phel-cli
Getting started CLI template for Phel lang.
https://github.com/mabasic/phel-cli
hacktoberfest phel project template
Last synced: 16 days ago
JSON representation
Getting started CLI template for Phel lang.
- Host: GitHub
- URL: https://github.com/mabasic/phel-cli
- Owner: mabasic
- License: mit
- Created: 2021-01-23T14:43:33.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-16T12:48:26.000Z (about 3 years ago)
- Last Synced: 2024-10-09T19:51:44.196Z (27 days ago)
- Topics: hacktoberfest, phel, project, template
- Language: PHP
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Phel - CLI
Getting started CLI template for [Phel](https://phel-lang.org/) lang.
This template creates a namespace called `app` for storing your application logic in `src/` directory, and `app\tests` in `tests/` directory for storing your application tests.
**Requirement: PHP 7.4 or 8.0**
## Installation Via Composer
If your computer already has PHP and Composer installed, you may create a new Phel project by using Composer directly. After the application has been created, you may start the Phel application using the Phel CLI's `run` command:
```bash
composer create-project mabasic/phel-cli example-app dev-mastercd example-app
./vendor/bin/phel run src/boot.phel
# or
./vendor/bin/phel run app\\boot
# or
./vendor/bin/phel run "app\boot"
```The output will be:
```
Hello, Phel!
```## Shortcuts
- `composer repl` - Starts the Phel REPL.
- `composer test` - Runs the test suite.
- `composer format {directory}` - Formats the given directory.
- `composer start {script}` - Executes the given script.## Next Steps
From here you can learn more about using Phel from the [official website](https://phel-lang.org/), or view the [source code repository](https://github.com/phel-lang/phel-lang) and contribute to the development of the language and its ecosystem.