Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more workarounds for old ubuntu - from 2024 setup #29

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,18 @@ Waznex Server is based on the Flask microframework and can easily be hosted on a
## Production on Ubuntu 18.04 64bit

1. SSH to server as root
2. `sudo apt-get install -y make git`
3. `mkdir /opt/waznexserver`
4. `cd /opt/waznexserver`
5. `git clone https://github.com/brousch/WaznexServer.git`
6. `cd WaznexServer`
7. `make install_system_requirements`
8. `make bootstrap_modern_python_tools`
9. `make create_venv`
10. `make init_data`
11. `make init_production`
2. `apt update`
3. `apt install -y make git`
4. `mkdir /opt/waznexserver`
5. `cd /opt/waznexserver`
6. `git clone https://github.com/brousch/WaznexServer.git`
7. `cd WaznexServer`
8. `make install_system_requirements`
9. `curl https://bootstrap.pypa.io/pip/2.7/get-pip.py | python`
10. `make bootstrap_modern_python_tools` # lol modern
11. `make create_venv`
12. `make init_data`
13. `make init_production`

# Configuration

Expand Down