https://github.com/planety/logue
Command tools for Prologue in Nim.
https://github.com/planety/logue
cli nim prologue web
Last synced: 3 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-13T01:34:17.000Z (almost 3 years ago)
- Last Synced: 2025-04-03T08:21:39.226Z (3 months ago)
- Topics: cli, nim, prologue, web
- Language: Nim
- Homepage: https://github.com/planety/prologue
- Size: 23.4 KB
- Stars: 8
- Watchers: 8
- 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`