Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
umr-tetis
MOOD
mood-tetis-tweets-collect
Commits
8c0fd854
Commit
8c0fd854
authored
Aug 11, 2020
by
Decoupes Remy
Browse files
systemd: fix error
parent
060a6c95
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
8c0fd854
...
...
@@ -14,7 +14,7 @@ Users who wants to use this project have to create a [Twitter developer account]
This project has only been tested on python3.7.
Install all dependencies using pip:
```
shell
pip
install
-r
requirements.txt
pip
3
install
-r
requirements.txt
```
### Twitter credentials
A credentials.py has to be created using the
[
template
](
params/template-credentials.py
)
...
...
@@ -31,8 +31,8 @@ python3 collectTweets.py
```
## Optional : create a systemd deamon
1.
Copy service file
`sudo cp systemd/mood-tweets-collect.service /lib/systemd/system`
2.
Modify /lib/systemd/system/mood-tweets-collect.service with the correct
execPath
2.
Modify /lib/systemd/system/mood-tweets-collect.service with the correct
`WorkingDirectory`
3.
Reload systemd :
`sudo systemctl daemon-reload`
4.
Enable auto start using command :
`systemctl enable mood-tweets-collect.service`
4.
Enable auto start using command :
`
sudo
systemctl enable mood-tweets-collect.service`
## License
This code is provided under the
[
CeCILL-B
](
https://cecill.info/licences/Licence_CeCILL-B_V1-en.html
)
free software license agreement.
\ No newline at end of file
systemd/mood-tweets-collect.service
View file @
8c0fd854
...
...
@@ -2,7 +2,8 @@
Description
=
H2020 MOOD / TETIS collect tweets
[Service]
ExecStart
=
/usr/bin/python3 /home/rdecoupe/mood-tetis-tweets-collect/collectTweets.py
WorkingDirectory
=
/home/rdecoupe/mood-tetis-tweets-collect/
ExecStart
=
/usr/bin/python3 collectTweets.py
Restart
=
on-failure
RestartSec
=
10
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment