Web-based configuration for VR applications
 
 
 
 
 
 
Go to file
Anton Franzluebbers 4e9c1a74cc join links 2022-07-06 14:45:40 -04:00
.github/workflows add velconnect unity package, lots of api changes to make it more generic, added dockerfile 2022-07-03 18:51:51 -04:00
discord_bot added discord bot to this repo 2022-06-22 20:53:44 -04:00
unity_package join links 2022-07-06 14:45:40 -04:00
velconnect join links 2022-07-06 14:45:40 -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