You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+25-25
Original file line number
Diff line number
Diff line change
@@ -8,21 +8,21 @@ The published documentation is at:
8
8
9
9
-https://docs.odk-x.org/
10
10
11
-
Please [file an issue](https://github.com/odk-x/docs/issues) if you can't find what you are looking for.
11
+
Please [file an issue](https://github.com/odk-x/tool-suite-X/issues) if you can't find what you are looking for.
12
12
13
13
## Building and viewing documentation locally
14
14
15
15
There are two options for building and viewing ODK-X docs locally: [using Docker](#docker) or [setting up a local Python/Sphinx environment](#python-environment). We generally recommend starting with the Docker image unless you already have a Sphinx environment set up. The [Contributor Guide](https://docs.odk-x.org/contributing) describes the philosophy behind the docs, style considerations, how to write restructured text and more.
16
16
17
17
## <aname="docker"></a>Using Docker
18
18
19
-
[Docker](https://www.docker.com/) is a platform that makes it easier to package applications so that they can work on any computer. This is particularly valuable when setting up development environments which can work very differently based on versions of the tools involved.
19
+
[Docker](https://www.docker.com/) is a platform that makes it easier to package applications so that they can work on any computer. This is particularly valuable when setting up development environments which can work very differently based on versions of the tools involved.
20
20
21
21
### Prerequisites
22
22
* Install Docker
23
23
* Windows and Mac users should follow the instructions in [the get started guide](https://www.docker.com/get-started)
24
24
* Linux users should follow the instructions for their specific distribution: [CentOS](https://docs.docker.com/install/linux/docker-ce/centos/), [Debian](https://docs.docker.com/install/linux/docker-ce/debian/), [Fedora](https://docs.docker.com/install/linux/docker-ce/fedora/), [Ubuntu](https://docs.docker.com/install/linux/docker-ce/ubuntu/), [Binaries](https://docs.docker.com/install/linux/docker-ce/binaries/)
25
-
25
+
26
26
More info at the [Docker CE docs page](https://docs.docker.com/install/)
27
27
* Install [git](https://git-scm.com/downloads)
28
28
* Install [Git-LFS](https://git-lfs.github.com/)
@@ -51,12 +51,12 @@ It can take a long time to build the Docker image, but you only need to do this
51
51
* All commands should be run in an elevated PowerShell window. Right click on PowerShell and select the "Run as administrator" option.
52
52
* Ensure Docker is running by checking your system tray. If Docker is not running, launch "Docker for Windows" app and wait until a notification confirms that Docker is running.
53
53
54
-
### Building and serving the docs locally
54
+
### Building and serving the docs locally
55
55
56
56
Build and serve the docs locally with:
57
57
* Windows: `.\run-task.bat odkx-autobuild`
58
58
* Linux/macOS: `./run-task.sh odkx-autobuild`
59
-
59
+
60
60
Once your terminal shows a "Serving on http://0.0.0.0:8080" message, you can then view the docs in your browser at http://localhost:8080.
61
61
62
62
Changes you make in the source files will automatically be built and shown in your browser.
@@ -69,7 +69,7 @@ If you get a `The name "odkx-docs" is already in use by container` error message
69
69
docker kill odkx-docs
70
70
```
71
71
72
-
### Other build tasks
72
+
### Other build tasks
73
73
74
74
You can also use the `run-task` script described above to run just a portion of the build process. See available [build tasks](#tasks) below.
75
75
@@ -80,7 +80,7 @@ You can also use the `run-task` script described above to run just a portion of
We highly recommend you use a virtual environment like [virtualenv](https://virtualenv.pypa.io/en/stable/) or a Python version management like [pyenv](https://github.com/pyenv/pyenv). (Type `python --version` to see your current version.)
85
85
86
86
- Instructions for setting up virtual environment:
@@ -93,23 +93,23 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
93
93
94
94
#. Create a directory called 'odkx'
95
95
Create a directory for the documents. For the purposes of these directions we will use the folder 'odkx' as the directory that will contain the ODK-X Docs environment.
96
-
96
+
97
97
98
98
mkdir odkx
99
-
100
-
101
-
Next, navigate the command line interface to inside the directory.
102
-
103
-
104
-
cd odkx
99
+
100
+
101
+
Next, navigate the command line interface to inside the directory.
102
+
103
+
104
+
cd odkx
105
105
106
106
107
107
#. Create the virtual environment.
108
108
109
109
110
-
110
+
111
111
Next create the virtual environment inside the 'odkx' directory.
112
-
112
+
113
113
Bash
114
114
115
115
/odkx/ $ python3 -m venv odkxenv
@@ -121,18 +121,18 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
121
121
#. Activate the virtual environment.
122
122
123
123
Bash
124
-
124
+
125
125
/odkx/ $ source odkxenv/bin/activate
126
126
(odkxenv) /odkx/ $
127
127
128
128
PowerShell
129
-
129
+
130
130
/odkx/ > source odkxenv/bin/activate
131
131
(odkxenv) /odkx/ >
132
132
133
133
The ``(odkxenv)`` before the prompt shows that the virtual environment is active.
134
134
You will need to have this active any time you are working on the docs.
135
-
135
+
136
136
If the file cannot be found, your activate file may be located under odkxenv/scripts/activate.
137
137
138
138
Later, to deactivate the virtual environment:
@@ -146,7 +146,7 @@ We highly recommend you use a virtual environment like [virtualenv](https://virt
It can take a long time (>10 minutes) to clone the repo due to the large number of images in the docs. If you get an error such as `Smudge error` or `GitHub's rate limit reached`, run `git checkout -f HEAD` until you get the message `Checking out files: 100% done`.
162
162
163
-
### Building the docs
163
+
### Building the docs
164
164
165
165
Once your environment is set up, build and serve the docs locally with:
166
166
@@ -187,13 +187,13 @@ We are open for new issues and pull requests.
187
187
188
188
- Please read the [Contributors Guide](https://docs.odk-x.org/contributing) before working on the documentation.
189
189
- Find issues to work on.
190
-
- Issues labelled [easy](https://github.com/odk-x/docs/labels/easy) do not require much specific technical knowledge.
191
-
- Issues labelled [contributor friendly](https://github.com/odk-x/docs/labels/contributor%20friendly) are usually self-contained and don't require extensive knowledge of the ODK-X ecosystem as a whole.
192
-
190
+
- Issues labelled [easy win](https://github.com/odk-x/tool-suite-X/labels/easy%20win) do not require much specific technical knowledge.
191
+
- Issues labelled [contributor friendly](https://github.com/odk-x/tool-suite-X/labels/contributor%20friendly) are usually self-contained and don't require extensive knowledge of the ODK-X ecosystem as a whole.
192
+
193
193
You can also...
194
194
195
195
-[Discuss the documentation from a user perspective in our forum](https://forum.odk-x.org/c/development/documentation).
196
-
-[File an issue](https://github.com/odk-x/docs/issues) for any needed improvements.
196
+
-[File an issue](https://github.com/odk-x/tool-suite-X/issues) for any needed improvements.
197
197
-[Watch](https://github.com/odk-x/docs/subscription) and star this repo, to keep up with what we're doing.
0 commit comments