Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Manual Setup

Reece Harris edited this page Jul 12, 2021 · 7 revisions

Windows

  1. Install and follow all the setup guides for the Prerequisites
  2. Create a new folder
  3. Open a command prompt in that directory (if you are using windows just type cmd in the file explorer)

  1. Type the following commands
git clone https://github.com/NotReeceHarris/DataStore3.git
cd DataStore3/server
pip install -r requirements.txt
python CreateUser.py
python main.py
  1. Head over to your dashboard, your URL should appear on the screen if not go to your browser and enter your private IP followed by the port you entered. Example 10.0.0.1:80

Linux

Enter the following commands

sudo su
sudo apt-get install git
sudo apt-get install tmux
sudo apt-get install python3
sudo apt-get install python3-pip
git clone https://github.com/NotReeceHarris/DataStore3.git
cd DataStore3/server
pip install -r requirements.txt
clear
python CreateUser.py
tmux
python main.py

Head over to your dashboard, your URL should appear on the screen if not go to your browser and enter your private IP followed by the port you entered. Example 10.0.0.1:80

Clone this wiki locally