generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #247 from amosproj/improve-sphinx-doc
Improve Sphinx documentation
- Loading branch information
Showing
25 changed files
with
119 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,20 +24,20 @@ The stable branches `main` and `dev` are protected against direct pushes. To com | |
|
||
Before contributing to this repository make sure that you are identifiable in your git user settings. This way commits and PRs created by you can be identified and easily traced back. | ||
|
||
```[bash] | ||
```bash | ||
git config --local user.name "Manu Musterperson" | ||
git config --local user.email "[email protected]" | ||
``` | ||
|
||
Any commit should always contain a commit message that references an issue created in the project. Also, always signoff on your commits for identification reasons. | ||
|
||
```[bash] | ||
```bash | ||
git commit -m "Fixed issue #123" --signoff | ||
``` | ||
|
||
When doing pair programming be sure to always have all SDs mentioned in the commit message. Each SD should be listed on a new line for clarity reasons. | ||
|
||
```[bash] | ||
```bash | ||
git commit -a -m "Fixed problem #123 | ||
> Co-authored-by: Manu Musterperson <[email protected]>" --signoff | ||
``` | ||
|
@@ -50,7 +50,7 @@ Here is a standard way to merge pull requests: | |
|
||
1. Have all your local changes added, committed, and pushed on the remote **feature-1** branch | ||
|
||
```[bash] | ||
```bash | ||
git checkout feature-1 | ||
git add . | ||
git commit -m "added a feature" --signoff # don't forget the signoff ;) | ||
|
@@ -59,7 +59,7 @@ Here is a standard way to merge pull requests: | |
|
||
2. Make sure your local main branch up-to-date | ||
|
||
```[bash] | ||
```bash | ||
git checkout main | ||
git pull main | ||
``` | ||
|
@@ -78,7 +78,7 @@ _**In case of merge conflict:**_ | |
Should we experience merge conflict after step 3, we should solve the merge conflicts manually, below the title of "This branch has conflicts that must be resolved" click on web editor (you can use vscode or any editor you want). | ||
The conflict should look like this: | ||
|
||
```[bash] | ||
```bash | ||
<<<<<<< HEAD | ||
// Your changes at **feature-1** branch | ||
======= | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,8 @@ Phone,string,Phone number of the lead,Lead data,-,49 1234 56789 | |
Email,string,Email of the lead,Lead data,-,[email protected] | ||
domain,string,"The domain of the email is the part that follows the ""@"" symbol, indicating the organization or service hosting the email address.",processing,Email,example.com | ||
email_valid,boolean,Checks if the email is valid.,email_validator package,Email,True/False | ||
first_name_in_account,boolean,Checks if first name is written in "Account" input,processing,First Name,True/False | ||
last_name_in_account,boolean,Checks if last name is written in "Account" input,processing,Last Name,True/False | ||
first_name_in_account,boolean,"Checks if first name is written in ""Account"" input",processing,First Name,True/False | ||
last_name_in_account,boolean,"Checks if last name is written in ""Account"" input",processing,Last Name,True/False | ||
number_formatted,string,Phone number (formatted),phonenumbers package,Phone,49123456789 | ||
number_country,string,Country derived from phone number,phonenumbers package,Phone,Germany | ||
number_area,string,Area derived from phone number,phonenumbers package,Phone,Erlangen | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../Documentation/_static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
.. SPDX-License-Identifier: MIT | ||
.. SPDX-FileCopyrightText: 2024 Simon Zimmermann <[email protected]> | ||
Build Documentation | ||
=================== | ||
.. include:: ../../Documentation/Build-Documentation.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
User Documentation | ||
================== | ||
.. include:: ../../Documentation/User-Documentation.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Design Documentation | ||
==================== | ||
.. include:: ../../Documentation/Design-Documentation.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Data Fields | ||
----------- | ||
.. include:: ../../Documentation/Data-Fields.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
.. _\./data-fields\.csv: | ||
|
||
Data Fields CSV | ||
--------------------- | ||
|
||
The following table highlights the data fields obtained for each lead. | ||
The acquisition of such data may derive from the Lead Form or may be extracted from external sources utilizing APIs. | ||
|
||
.. csv-table:: Data Field Definition | ||
:file: ../../Documentation/data-fields.csv | ||
:header-rows: 1 | ||
:widths: auto | ||
|
||
Google Search Strategy | ||
---------------------- | ||
.. include:: ../../Documentation/Google-Search-Strategy.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
OpenLLM Business Type Analysis | ||
------------------------------ | ||
.. include:: ../../Documentation/OpenLLm-Business-Type-Analysis.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Classifier Comparison | ||
===================== | ||
.. include:: ../../Documentation/Classifier-Comparison.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Concepts, Unrealized Ideas & Miscellaneous | ||
========================================== | ||
|
||
.. include:: ../../Documentation/ideas.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Controller | ||
---------- | ||
.. include:: ../../Documentation/Controller.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Twitter API Limitation | ||
---------------------- | ||
.. include:: ../../Documentation/Twitter-API-Limitation.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Contribution | ||
------------ | ||
.. include:: ../../Documentation/Contribution.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
SBOM Generator | ||
-------------- | ||
.. include:: ../../Documentation/SBOM_generator.md | ||
:parser: myst_parser.sphinx_ | ||
|
||
Miscellaneous | ||
------------- | ||
.. include:: ../../Documentation/Miscellaneous.md | ||
:parser: myst_parser.sphinx_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters