Author
|
zPlus <zplus@peers.community>
2020-06-05 05:44:53
|
Committer
|
zPlus <zplus@peers.community>
2020-06-05 05:44:53
|
Commit
|
28af5ea
(patch)
|
Tree
|
567f414
|
Parent(s)
|
|
Improve documentation.
commits diff:
eaf8485..28af5ea
2 files changed,
3 insertions,
3 deletions
—
download
Diffstat
Diff options
+1/-1
M README.md
9
|
9
|
|
## Setup Python3 virtual environment
|
10
|
10
|
|
|
11
|
11
|
|
cd freepost-directory
|
12
|
|
- |
python3 -m venv venv (if this doesn't work, try `virtualenv -p python3 venv`)
|
|
12
|
+ |
python3 -m venv venv (if this doesn't work, try `virtualenv -p /usr/bin/python3 venv`)
|
13
|
13
|
|
source venv/bin/activate
|
14
|
14
|
|
pip3 install -r requirements.txt
|
15
|
15
|
|
|
+2/-2
M freepost/templates/post.html
66
|
66
|
|
</div>
|
67
|
67
|
|
|
68
|
68
|
|
{# "shortcut-submit" is a class used exclusively from javascript
|
69
|
|
- |
# to submit the form when a key (Ctrl+Enter) is pressed.
|
70
|
|
- |
#}
|
|
69
|
+ |
# to submit the form when a key (Ctrl+Enter) is pressed.
|
|
70
|
+ |
#}
|
71
|
71
|
|
<form action="" method="post" class="new_comment shortcut-submit">
|
72
|
72
|
|
<textarea
|
73
|
73
|
|
name="new_comment"
|