Huzefa Ahmedhuzefaweb.hashnode.dev·Sep 6, 2024Project 3: Write a MakeFile For Two-Tier-Flask-AppIn this blog, I'll guide you through understanding and writing a Makefile that uses Docker Compose to build, run, and manage a two tier flask app across multiple operating systems. If you’re working on a project with Docker and need an easy way to st...DiscussDevops
John Opiyojohnopiyo.hashnode.dev·Sep 5, 2024Introduction to Makefiles for Go DevelopersIn modern software development, automation and repeatability are essential for maintaining reliable systems. Although Integrated Development Environments (IDEs) simplify tasks, they often lack the flexibility needed for automation, especially in larg...DiscussMakefile
RAKESH DUTTAdailydoseindevops.hashnode.dev·Aug 23, 2024Deployed🚀 a two-tier flask & mysqldb applicaton with advanced Shell Script commands integration call MAKEFILE📂.A makefile is a text file that works with the Unix make utility to automate the process of compiling and linking source code to create an executable. It lists source files, compiler options and recompilation rules, making it easy to manage complex bu...DiscussDevOps ProMakefilefortwotierapp
Runar Kristoffersenblog.runar.dev·Jul 17, 2024Speeding up any and all js-projects with a single, global makefileTLDR: Jump to complete markdown-file When working on various projects, you often need to install dependencies. When switching branches, it's easy to forget this, which can lead to bugs. Consider a branch where one of the dependencies is updated. Eac...Discuss·54 readsMakefile
sammyskanyingi.hashnode.dev·Jul 6, 2024C-MakefilesA make- is a build automation tool used to compile and build projects. Very useful if you have multiple source files. Makefile is just a configuration file that specifies how the project should be built(rules) and the dependencies between different f...DiscussMakefile
Dristanta Silwaldristantasilwal.hashnode.dev·May 8, 2024Let's make something by makeHey there, fellow developer! Let's dive into the wonderful world of make and how it can save us from the headaches of manual compilation. If you've ever found yourself drowning in a sea of source files, make is here to throw you a lifebuoy. What's th...DiscussMakefile
J-Naishj-naish.hashnode.dev·Apr 16, 2024The ".a", ".o", and ".out" files in CToday, I will show you what is ".a" and ".o" files in C/C++, which are unavoidable to develop products in C/C++. Let's dive in. How is a program executed? As you know, computers cannot directly execute programs written in C/C++, Java, Swift, JavaScri...DiscussC
J-Naishj-naish.hashnode.dev·Apr 15, 2024All about MakefileWe have to compile programs of languages like C/C++, Swift, Go, and Rust whenever we run, build, test codes. The process is not only troublesome, but also varies from person to person in terms of which files to compile, how to compile them, and how t...Discuss·1 like·45 readsC
Giuseppe Santorocloudnativeengineer.hashnode.dev·Mar 18, 2024Supercharge Your Automation Workflows with Taskfile: Say Goodbye to MakefileDive into my latest article, "Supercharge Your Automation Workflows with Taskfile: Say Goodbye to Makefile." Topics: 🚀 Introduction to Taskfile: Discover why Taskfile is gaining traction as a more accessible and efficient alternative to Makefile, e...DiscussMakefile
Suraj Shettyhashnode.surajshetty.blog·Feb 29, 2024Build a URL Shortener with Go Fiber and RedisBefore we dive into the implementation, make sure you have the following prerequisites installed: Go programming language & Redis server Step 1: Setting Up the Go Fiber Project & Defineing Routes. Start by creating a new Go Fiber project. Use the fol...Discuss·71 readsMicroservices ToolsGo Language