Deploy / Upload Files Last updated: 1oth June 2025
Ok so you've created your chatbot, and you've seen it working. If you haven't then contact me @ support.
Create an Account
If you haven't already, create an account and a repository for your Chatbot.
Upload to Github Option 1
If you're familiar with Github, use the collowing command using Git bash;
git clone https://github.com/venture-logistics/Chatbot-free.git
cd Chatbot-free
Upload to Github Option 2
Venture AI is an enormous program (350Mb), meaning uploading the easy way isn't possible!
To upload quickly and easily we can use the command line tool Git Bash, which you can download from here
Once install, open up and first cd into the location where your Chat bot is located, e.g.
cd D:chat-bot-free
You'll also need the link to the root of your repository, which will be something like github.com/user-name/reposity-name, e.g. ;
https://github.com/venture-logistics/Chatbot-free
Now we can upload to our repository using the follow series of .git command;
git init
git remote add origin https://github.com/user-name/reposity-name.git
git add .
git commit -m "Initial full project upload"
git push -u origin master
git pull --rebase origin master
A quick check to see if the upload is ok.
git status
A quick check that the comments were applied - it should say "Initial full project upload"
git reflog
View the files
The commit will be in the "Master" branch, so when viewing your repository, switch from "main" to "master."
That's it! Take note of the url at the top of the page, in the address bar, you'll need this to deploy your Chatbot on a live server.
Support
For support visit the Chatbot Free repostory and ask a question in "Discussions."