Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/planety/logue
Command tools for Prologue in Nim.
https://github.com/planety/logue
cli nim prologue web
Last synced: 3 days ago
JSON representation
Command tools for Prologue in Nim.
- Host: GitHub
- URL: https://github.com/planety/logue
- Owner: planety
- License: apache-2.0
- Created: 2020-08-07T12:52:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-13T01:34:17.000Z (over 2 years ago)
- Last Synced: 2024-11-10T22:35:47.523Z (8 days ago)
- Topics: cli, nim, prologue, web
- Language: Nim
- Homepage: https://github.com/planety/prologue
- Size: 23.4 KB
- Stars: 8
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# logue
Command tools for Prologue in Nim.# Installation
```
nimble install logue
```Make sure `~/.nimble/bin` is in your environment variables.
## Usage
### Initialize project
Use `logue init yourprojectname` to initialize your project.
For example, type command `logue init helloworld` to initialize. This will create program
structure like this:```
- helloworld
.env
app.nim
urls.nim
views.nim
```You must switch to `/.../helloworld` directory to run `app.nim`.
### Run project
Use `logue run` or `logue run app.nim` or `logue run anynimfile.nim`