Web-based configuration for VR applications
 
 
 
 
 
 
Go to file
NtsFranz 815707b8ad better file uploading support 2022-09-11 01:04:03 -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 better file uploading support 2022-09-11 01:04:03 -04:00
velconnect better file uploading support 2022-09-11 01:04:03 -04:00
.gitignore removed v2/v1 division, working on user account system and file uploads 2022-09-05 02:33:05 -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