Web-based configuration for VR applications
 
 
 
 
 
 
Go to file
Anton Franzluebbers a198aae20a added pairing code to ui 2022-06-23 23:13:10 -04:00
discord_bot added discord bot to this repo 2022-06-22 20:53:44 -04:00
velconnect added pairing code to ui 2022-06-23 23:13:10 -04:00
website user count history 2021-12-17 02:38:08 -05:00
.gitignore switched to sqlite, added support for streamer_ vals 2022-06-23 22:27:28 -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