Skip to content

Commit

Permalink
Updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
flexcomng authored Jun 27, 2024
1 parent bed6b1e commit 991b999
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,33 @@ sudo apt update && sudo apt -y upgrade
```
and then reboot your machine

# Important!
Do not run this script as root as it will fail when setting up the site. If your VPS default user is root, create a non-root user by following these steps:

1. Create a new user (you can change frappeuser to your preferred user name):
```
sudo adduser frappeuser
Full Name []: frappeuser
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y]
```
2. Add the user to sudoers:
```
usermod -aG sudo frappeuser
```
3. Switch to created user:
```
su frappeuser
```
4. Ensure you're on created user's home directory:
```
cd /home/frappeuser
```
5. Continue with the next steps below.

# Installation:

1. Clone the Repo:
Expand Down

0 comments on commit 991b999

Please sign in to comment.