flask-deploy icon indicating copy to clipboard operation
flask-deploy copied to clipboard

Check out the blog post:

Results 3 flask-deploy issues
Sort by recently updated
recently updated
newest added

it works beautifully for python 2. i've almost got it working in python 3 except in the output it keeps saying "using executeable /path/to/python2". not sure what i'm doing wrong....

``` > > 405 Method Not Allowed > Method Not Allowed > The method is not allowed for the requested URL. ```

Example: languages = [{'name' : 'JavaScript'}, {'name' : 'Python'}, {'name' : 'Ruby'}] @app.route('/lang', methods=['POST']) def addOne(): language = {'name' : request.json['name']} languages.append(language) return jsonify({'languages' : languages}) Test: 171.232.89.174/lang Method: Post...