Web-based configuration for VR applications
 
 
 
 
 
 
Go to file
Anton Franzluebbers d4dca7f79e set up ci for unity package 2022-07-19 19:36:01 -04:00
.github/workflows set up ci for unity package 2022-07-19 19:36:01 -04:00
discord_bot added discord bot to this repo 2022-06-22 20:53:44 -04:00
unity_package user count copied to v2 2022-07-06 15:53:48 -04:00
velconnect set up ci for unity package 2022-07-19 19:36:01 -04:00
.gitignore velconnect v2 wow 2022-07-05 20:01:45 -04:00
README.md added discord bot to this repo 2022-06-22 20:53:44 -04:00

README.md

VELConnect API Setup

  1. cd velconnect
  2. Create pip env: python3 -m venv env
  3. Activate the env . env/bin/activate
  4. Install packages pip install -r requirements.txt
  5. Add config_mysql.py
    • Get from some old server
  6. Run ./run_server.sh
    • Or set up systemctl service:
      [Unit]
      Description=VELConnect API
      Requires=network.target
      After=network.target
      
      [Service]
      User=ubuntu
      Group=ubuntu
      Environment="PATH=/home/ubuntu/VEL-Connect/velconnect/env/bin"
      WorkingDirectory=/home/ubuntu/VEL-Connect/velconnect
      ExecStart=/home/ubuntu/VEL-Connect/velconnect/env/bin/uvicorn --port 8005 main:app
      [Install]
      WantedBy=multi-user.target
      
    • Enter the above in /etc/systemd/system/velconnect.service
    • sudo systemctl enable velconnect
    • sudo systemctl start velconnect