Skip to content
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

[Repository] Update path descriptions #60

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/developer/repositories.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The underlying persistence layer could be anything, file, memory, remote storage

### **Code Generation: Repository Generator**

The repository generator can be found in the source via the following path
The repository generator can be found and executed from the source root via the following path

```bash
./utils/scripts/generators/repository-generator.pl
Expand All @@ -50,16 +50,16 @@ The repository generator can be found in the source via the following path
=== "Linux Bash"
```bash
# Command Structure
perl ~/code/utils/scripts/generators/repository-generator.pl [server-location] [table|all] [base|extended|all] [
perl /path/to/sourcecode/utils/scripts/generators/repository-generator.pl [server-location] [table|all] [base|extended|all] [

# Generate everything
perl ~/code/utils/scripts/generators/repository-generator.pl ~/server/ all
perl /path/to/sourcecode/utils/scripts/generators/repository-generator.pl /path/to/server all

# Only generate a repository for the account table
perl ~/code/utils/scripts/generators/repository-generator.pl ~/server/ account
perl /path/to/sourcecode/utils/scripts/generators/repository-generator.pl /path/to/server account

# Only generate base repositority for specific table
perl ~/code/utils/scripts/generators/repository-generator.pl ~/server/ account base
perl /path/to/sourcecode/utils/scripts/generators/repository-generator.pl /path/to/server account base
```

=== "Windows CMD"
Expand Down