Activity 50: Keriderya API
Fork the Repository thirdygayares/keriderya-api
Clone Your Repository
git clone https://github.com/MonetForProgrammingPurposes/keriderya-api.git
python -m venv venv #Create a Virtual Environment
venv\Scripts\activate #Activate the virtual environment
pip install -r requirements.txt
Add .env
File
Create a Database in Aiven Dashboard
Update the
.env
file
FLASK_ENV=development
DATABASE_URL=mysql://avnadmin:{password}@{host}:{port}/{database name}
SECRET_KEY=your_secret_key
Add Certificates
flask db upgrade #Database Migration
python run.py #Run the Application