-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add begining of docs for editor #144
base: master
Are you sure you want to change the base?
Changes from 2 commits
79ebd0c
2b226b6
0425bcc
0ceb484
a87c4c3
3cff287
6bde17c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# albinos_editor | ||
|
||
## Prerequisites | ||
|
||
Below is the list of prerequisites to compile albinos-editor on your machine: | ||
|
||
* Nim version 0.18 minimum | ||
* Nimble | ||
|
||
## Getting Started | ||
|
||
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where is "deployment"? |
||
|
||
### Build | ||
|
||
To build the project please follow the instructions below: | ||
|
||
``` | ||
nimble build | ||
``` | ||
|
||
### Install | ||
|
||
To install the project please follow the instructions below: | ||
|
||
``` | ||
nimble install | ||
``` | ||
|
||
### Running the tests | ||
|
||
To run the tests for the project please follow the instructions below: | ||
|
||
``` | ||
nimble test | ||
``` | ||
|
||
## Architecture | ||
|
||
The albinos configuration editor works in a complementary way with `albinos daemon service`. | ||
|
||
The albinos editor binary comes with a dynamic library containing albinos API functionality, | ||
This way when a client enters a command the function is directly called from the `dynamic library`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add instructions on how to get this. Isn't as straightforward as you make it out to be.
This is mostly because as far I know most package managers don't provide nimble.
A simple link to the official download or something like that would suffice.