Author
|
zPlus <zplus@peers.community>
2023-07-08 10:53:17
|
Committer
|
zPlus <zplus@peers.community>
2023-07-08 10:53:17
|
Commit
|
94c690e
(patch)
|
Tree
|
8b0affe
|
Parent(s)
|
|
Add README.
commits diff:
fd076d6..94c690e
1 file changed,
10 insertions,
0 deletions
—
download
Diffstat
Diff options
+10/-0
A README
index
0000000..cb3accc
|
old size: 0B
-
new size: 311B
|
new file mode: -rw-r--r--
|
|
1
|
+ |
Run website:
|
|
2
|
+ |
|
|
3
|
+ |
python3 -m venv venv
|
|
4
|
+ |
source venv/bin/activate
|
|
5
|
+ |
gunicorn --reload --worker-connections=4 --threads=4 --bind localhost:8080 app:application
|
|
6
|
+ |
|
|
7
|
+ |
Crawl website to static HTML pages:
|
|
8
|
+ |
|
|
9
|
+ |
wget2 --mirror --max-threads=16 --page-requisites --adjust-extension --execute robots=off localhost:8080
|
|
10
|
+ |
|