90
90
```
91
91
92
92
** Please check where npm installs your global packages** ! It happens very often that the first installed binary
93
- is put into ``` /usr/local/bin ``` and the updated into ``` /usr/bin ``` . Run ``` nelson --version``` after the upgrade
93
+ is put into ``` /usr/local/bin ``` and the updated into ``` /usr/bin ``` . Run ``` field --version``` after the upgrade
94
94
to make sure you are using the most recent one. Update your scripts and/or services to point to the right binary!
95
95
96
96
### Running as a service
@@ -104,11 +104,11 @@ npm install pm2 -g
104
104
# Make pm2 start at startup:
105
105
pm2 startup
106
106
107
- # Start the Nelson as service
108
- # If you created a nelson config somewhere on your system, provide the path to the config:
107
+ # Start the Field as service
108
+ # If you created a field config somewhere on your system, provide the path to the config:
109
109
pm2 start field -- --config /path/to/field-config.ini
110
110
111
- # Otherwise you can just do: pm2 start nelson
111
+ # Otherwise you can just do: pm2 start field
112
112
113
113
# Save current processes runing with pm2 to startup on boot:
114
114
pm2 save
@@ -152,7 +152,7 @@ Run tests and make binaries:
152
152
yarn make
153
153
```
154
154
155
- Try to run Nelson :
155
+ Try to run Field :
156
156
157
157
```
158
158
node ./dist/field.js --pow
@@ -171,7 +171,7 @@ To use a configuration file, run Field with ```--config``` option:
171
171
field --config ./config.ini
172
172
173
173
# Alternatively, set an environment variable:
174
- FIELD_CONFIG= ./config.ini nelson
174
+ FIELD_CONFIG= ./config.ini field
175
175
```
176
176
177
177
You can provide one or more of the following options in your ini file. Example:
0 commit comments