-
I was able to get ASF up and running on a ubuntu server. It's running the basic config and farming cards at the moment in the background. I'm using SSH and terminal to access the server (basically just a free tier Oracle thing that I can leave running). When I clone this GitHub repo and run
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Step 1: Start ASF as a service. I did not start a bot because I cannot enter 2fa password when running as a service, but ASF is running. Use: https://github.com/JustArchiNET/ArchiSteamFarm/wiki/Management Install |
Beta Was this translation helpful? Give feedback.
Step 1: Start ASF as a service. I did not start a bot because I cannot enter 2fa password when running as a service, but ASF is running. Use: https://github.com/JustArchiNET/ArchiSteamFarm/wiki/Management
Step 2
python3 -m pip install -r requirements.txt
to install this script's requirementsStep 3: when running script, localhost address should take the form
http://localhost:1242
- inclusive of the httpStep 4: If you experience errors (e.g., server disconnected), reboot your vps, then re-run the script
Install
screen
to keep scripts running when you disconnect from SSHStep 1:
sudo apt-get install screen
Step 2:
screen
Step 3: run the script
Step 4:
control+a
thend
to detach the script a…