- Initialize construct 2. Zip flask code 3. Set up options for application, env vars, and app version 4. Set environment 5. Make sure environment is built after CDK application
Posts for: #Web-Dev
Hugo Project Architecture
Personal Site Redesign Personal Site Redesign
Flask-Tables Variable Names Must Match Fields
When setting up a table with Flask-Tables, the variable names for the columns must match those in the database the table is pulling from. Alternative column names can be passed…
REST API Best Practices
Path parameters (/item) identify a specific resource(s), while request parameters (/item?color=blue) should act to filter items of that resource.