๋ฏธ๋ํ๋ก์ ํธ
[AWS + Filezila] ์น์๋น์ค ๋ฐฐํฌ ์ํ ์์
๋ค๋ฅธ ๊ฒ๋ณด๋ค ์ํ ์์(์ฌ์ง)๊ณผ ์ฝ๋์ด๋ค ์ฝ๋ 1. app.py 2. index.html app.py from flask import Flask, render_template, request, jsonify app = Flask(__name__) # DB from pymongo import MongoClient client = MongoClient('mongodb+srv://test:test@cluster0.wpvuwzi.mongodb.net/Cluster0?retryWrites=true&w=majority') db = client.dbsparta @app.route('/') def home(): return render_template('index.html') @app.route("/homework",..