Skip to content
This repository was archived by the owner on Jul 30, 2019. It is now read-only.

Latest commit

 

History

History
125 lines (81 loc) · 2.5 KB

Development.md

File metadata and controls

125 lines (81 loc) · 2.5 KB

My typical actions on the server.

Run your code

Deploy your current code on server (without commiting)

At the first time install python lib:

pip install watchdog --user python

Run script for watching of file changes and sync to server

☢️Be careful with this command!☣️

#for staging
ansible-playbook -i inventories/staging dev.yml --ask-vault-pass

Upload your ssh pub key for parse user

tag:

  • update_pubkey
ansible-playbook -i inventories/staging init.yml -t update_pubkey --ask-vault-pass

Update SSL certificate

Prepare ssl certs somehow :)

tag:

  • update_ssl
ansible-playbook -i inventories/staging init.yml -t update_ssl --ask-vault-pass

... and restart containers

ansible-playbook -i inventories/staging main.yml -t 'restart_mongo,restart_parse,restart_nginx,restart_dashboard' --ask-vault-pass

Pull repo from specific branch:

  • repo_branch=feature-v2
ansible-playbook -i inventories/staging main.yml -t update_repo -e "repo_branch=feature-v2" --ask-vault-pass

Pull repo with your custom private key:

  • ssh_key_path=~/.ssh/your_private_key
ansible-playbook -i inventories/staging main.yml -t update_repo -e "ssh_key_path=~/.ssh/your_private_key" --ask-vault-pass

Pull repo from default branch (repo_branch in you .yml file)

tag:

  • update_repo
ansible-playbook -i inventories/staging main.yml -t update_repo --ask-vault-pass

Connect to server

Connect to server by ssh.

ssh root@<your-server-ip> -p9033

Not working? Probably you need to add your public key on the server.

Read logs

Logs are stored in /var/log/docker/.

Each container has own logs. For example, parse server logs are available:

cat /var/log/docker/server.log

interactive mode:

tail -f /var/log/docker/server.log

Restart parse server

Restart parse-server container

tag:

  • restart_parse
ansible-playbook -i inventories/staging main.yml -t restart_parse --ask-vault-pass

Restart server manually

List of running containers:
docker ps

Restart server:
docker restart parse_server

Manually run scripts/jobs

Open bash terminal in parse_server container:
docker exec -it parse_server bash

See list of things:
ls

Run job:
docker exec -it parse_server node ./cloud/jobs/jobMarkVideosAsOld.js

Add new job

Please, refer to Jobs

Read scheduled jobs

crontab -u parse -l