404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.225.156.49: ~ $
before_script:
  - apt-get update -qq
  - apt-get install -qq git
  # Setup SSH deploy keys
  - 'which ssh-agent || ( apt-get install -qq openssh-client )'
  - eval $(ssh-agent -s)
  #You need to add the public key to the server so it would be recognized as an authentication key. This is, paste the content of the public key corresponding to the private key you are using to the ~/.ssh/authorized_keys on the $PRODUCTION_SERVER.
  - ssh-add <(echo "$SSH_DEPLOYER_PRIVATE_KEY_BASE64" | base64 -d)
  - mkdir -p ~/.ssh
  - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
deploy_development:
  # type: deploy
  environment:
    name: development
    url: server1.bayadic.com
  script:
    - ssh deployer@server1.bayadic.com "cd /var/wwww-sftp/botdev/bayadicbot && git clean -d -f && git checkout . && git checkout feature/DEVELOPMENT && git pull origin feature/DEVELOPMENT && exit"
  only:
    - feature/DEVELOPMENT
deploy_production:
  # type: deploy
  environment:
    name: staging
    url: server1.bayadic.com
  script:
    - ssh deployer@server1.bayadic.com "cd /var/www/html/bot/bayadicbot && git checkout master && git pull origin master && exit"
  only:
    - master


  # to run the it properly
  # the parent must be root and the permision is 755 while the children are 777
  # to give acces to deployer for using git
  # chmod -R g+swX bayadicbot/

Filemanager

Name Type Size Permission Actions
.git Folder 0755
.settings Folder 0755
.vscode Folder 0755
config Folder 0755
docs Folder 0755
redirectbotpage Folder 0755
src Folder 0755
tests Folder 0755
translatorApi Folder 0755
vendor Folder 0755
.gitignore File 86 B 0755
.gitlab-ci.yml File 1.37 KB 0755
.gitmodules File 200 B 0755
composer.json File 260 B 0755
composer.lock File 153.66 KB 0755
docker-compose.yml File 457 B 0755
index.html File 9 B 0755
my.cnf File 100 B 0755
mysql-docker.sh File 1.35 KB 0755
phpunit.xml File 534 B 0755
telegram_german_bot.sql File 30.04 KB 0755
telegram_german_bot_bak.sql File 36.57 KB 0755
telegram_swedish_bot.sql File 13.05 KB 0755
telegram_swedish_bot_bak.sql File 16.68 KB 0755