The first thing to do is to install Git on the remote server.
Once you do that the rest of the process is split into three sections:
- Server set-up
- Local set-up (push commits)
- Server (pull commits)
| axios({ | |
| url: 'http://localhost:5000/static/example.pdf', | |
| method: 'GET', | |
| responseType: 'blob', // important | |
| }).then((response) => { | |
| const url = window.URL.createObjectURL(new Blob([response.data])); | |
| const link = document.createElement('a'); | |
| link.href = url; | |
| link.setAttribute('download', 'file.pdf'); | |
| document.body.appendChild(link); |
| import logging | |
| from rest_framework import serializers | |
| class GeneralModelSerializer(serializers.ModelSerializer): | |
| """ General model serializer that will serialize a model object. It will return all the model fields. | |
| """ | |
| class Meta: | |
| model = None |
| package testBot1; | |
| import robocode.*; | |
| import java.awt.Color; | |
| import java.util.Random; | |
| public class Marvin extends Robot { | |
| /** |