user photo

Elijah Siaw

I am a passionate software developer who loves building user-friendly, modern, and scalable web, mobile and desktop applications. My expertise includes frontend and backend technologies, design, and problem-solving.

Posts

See all

3 posts

Introduction to flask application

Elijah Siaw

May 12, 2021

Introduction to flask application

Flask is a lightweight Python web framework designed to be simple and easy to use. It is often referred to as a “microframework” because it doesn’t include a lot of built-in tools or libraries. Instead, Flask provides the core functionality needed to build web applications and lets you choose the extensions and libraries you want to add for features like database interaction, user authentication, or form validation.

This design...

Read more ➡
26
2 comments
Set up flask development server

Elijah Siaw

Jun 05, 2021

Set up flask development server

A Flask server provides the essential tools for web development—like routing URLs to your Python code—without forcing a specific structure or including non-essential features. It has a built-in development server that’s perfect for building and testing your app. For a live website, you’d run your Flask app with a more powerful, WSGI production-ready server.

Read more ➡
0
0 comments
Set up flask production server

Elijah Siaw

Jul 06, 2022

Set up flask production server

Setting up a Flask production server involves using a dedicated Web Server Gateway Interface (WSGI) server instead of the built-in development server. The built-in server is not designed to handle the scale, security, and performance requirements of a production environment. 1. Choose a WSGI Server

Read more ➡
0
0 comments