17. Implementing AppliAR (Accounts Receivable) Package

UNDER DEVELOPMENT

Contents

See also: Developing Julia Packages

Step 1 - Create a package

  1. Create the local package AppliAR (Accounts Receivable)
  2. Create the GitHub Repository AppliAR.jl
  3. Push local repostitory to GitHub

Step 1.1 - Create the local package AppliAR (Accounts Receivable)

Prerequisites

StepActionComment
1$ juliaStart Julia.
2julia> ]Select the Package REPL.
3pkg> add PkgTemplatesInstall PkgTemplates.jl
4pkg> BackSpaceBack to the Julia REPL.
5Paste the following code into the Julia REPL
julia> using PkgTemplates # Start the PkgTemplates package

julia> t2 = Template(; # Create the template
              user="rbontekoe",
              license="MIT",
              authors=["Rob Bontekoe"],
              julia_version=v"1.3",
              ssh=true,
              plugins=[
                  TravisCI(),       # Continious Integration
                  Codecov(),        # Improve your code review
                  Coveralls(),      # Which parts aren’t covered by your test suite
                  AppVeyor(),       # CI/CD service
                  GitHubPages(),    # Documentation
              ],
   )

julia> generate(t, "AppliAR") # Create the local package in ~/.julia/dev
:–––––:–––––:–––––
1$ juliaStart Julia.
julia> 1 + 2

| 2 | Etc. | |

Step 1.2 - Create the GitHub Repository AppliAR.jl
StepActionComment
1https://github.com.<YOURNAME>Go to your GitHub account.
2Click on the Tab Repositories
3Click on the button New
4type: AppliAR.jlType your package name ending with .jl in the Repository name field.
5Click on the button Create repository
Step 1.3 - Push local repostitory to GitHub

|Step | Action | Comment | |:––––– | :––––– |:––––– |

Step 2 - Implement the AppliAR

Step 3 - Creating the Domain items

Step 4 - Creating the API functions

Step 5 - Creating the API tests

Step 6 - Creating the Infrastructure functions

Step 7 - Creating the Infra tests