Originally published at renanfranca.github.io
I built a Baby Care web app using microservices architecture to challenge me in my roadmap to master jhipster. Unfortunately turns out that I couldn't afford the cost of Publishing Microservices into Google Kubernetes Engine (GKE) and I decided to self-host the Baby Care App in my notebook and keep accessing it through my phone.
My baby girl Marília complete 9 months old so we are going out with her and I couldn't access the Baby Care App outside of my home. I decided to rewrite the Baby Care App as a monolithic architecture using jhipster to deploy it on Heroku for free. When I finally rebuilt the app, I realized that Heroku is going to shut down the free tier plan!
I will share with you my experience to publish an angular + spring boot + postgres database solution into fly.io for FREE. I opened source the Baby Care App as monolithic to let you put your hands on the code as I explain the step-by-step:
Create postgres into flyio
Free tier plan
According to this flyio community post, the free tier is a postgres with 1GB volume attached running in the free tier machine (shared-cpu-1x 256mb VMs).
Install flyctl
I am using Windows 10, so I had to run the following command at Powershell iwr https://fly.io/install.ps1 -useb | iex
. Visit this link to install it on another OS.
Signup
Run the command flyctl auth signup
to create your account. I put my credit card to earn more free resources, according to the documentation it's necessary to use postgres for free.
Login
Run the command flyctl auth login
Create a postgres app
Run the command flyctl postgres create
and I choose the following options:
- ? Choose an app name (leave blank to generate one): baby-postgres
- automatically selected personal organization: Renan Franca
- ? Select regions: São Paulo (gru)
- ? Select configuration: Development - Single node, 1x shared CPU, 256MB RAM, 1GB disk
After the postgres app were created you will receive something like that as an output:
- Postgres cluster baby-postgres created
- Username: postgres
- Password: randompassword
- Hostname: baby-postgres.internal
- Proxy Port: 5432
- Postgres Port: 5433
- postgres://postgres:randompassword@baby-postgres.internal:5432
Write it down, because you won't have another chance to access your postgres server information.
Run the following command flyctl volumes list -a baby-postgres
to confirm that a persistent free volume was automatically created for your postgres app.
Create the baby database
You will have to connect to the fly.io postgres server that you created to define the databasename. Use this command to port forward and connect with pdadmin locally flyctl proxy 5432 -a <postgres-app-name>
.
Use 127.0.0.1 instead of localhost when defining the host of your connection at pgadmin, because if you use localhost you will get the following error could not receive data from server: Socket is not connected
(https://serverfault.com/a/1003780/244961). In my case, I created the database called baby that will be used by my spring boot application.
Create angular + spring boot server
Free tier plan
According to this flyio pricing link, the free tier include:
- Up to 3 shared-cpu-1x 256mb VMs
- 160GB outbound data transfer
Create the dockerfile to the baby care app
Let's create the Dockerfile at the root of your project folder to run my jhipster angular+spring boot application. I got out of memory error when I tried to deploy using a regular OpenJDK image. I learned that works if you use an optimized ibm jre (https://community.fly.io/t/deployment-of-java-spring-api-using-dockerfile/6708/5) :
To build the final jar and optimize the baby application for production, run:
./mvnw -Pprod clean verify
Then I have to create a docker image locally from Dockerfile using this command at the project root folder docker build -t stting/mamazinhaflyio .
. Replace stting
with your dockerhub account.
The last step is to open the docker desktop and push the created image to the docker hub.
Create flyio dockerfile
I created the flyio folder flyio
in the root directory of my project. Inside that folder I created another dockerfile to push to flyio, doing this way you won't use the fly.io image builder, only pull from the docker hub (this makes the deployment much faster):
Create the flyio application
Let's go to the folder flyio
and run the command flyctl launch
and I choose the following options:
- Creating app in C:\Users\Blog\Documents\Projects\mamazinha-monolithic\flyio
- Scanning source code
- Detected a Dockerfile app
- ? App Name (leave blank to use an auto-generated name): mamazinha-app
- ? App Name (leave blank to use an auto-generated name): mamazinha-app
- Automatically selected personal organization: Renan Franca
- ? Select region: gru (São Paulo)
- Created app mamazinha-app in organization personal
- Wrote config file fly.toml
After running that command you will have an already configured fly.toml
file with your application info and everything you need to deploy it 🤩.
Define the environment variables
You have to open the fly.toml
file and edit the [env] section with the variables (replace the values with your recently created postgres app):
WARNING: about the postgres database URL for java. The postgres start guide examples didn't consider java language and the URL to connect to postgres which they gave to me after creating the postgres instance was that: postgres://baby-postgres.internal:5432/baby
. To solve the problem I change the prefix postgres to postgresql: jdbc:postgresql://baby-postgres.internal:5432/baby
Define the database password
You can use the secret option to keep your database password safe! Run the command:
flyctl secrets set DB_POSTGRES_PASSWORD=pasteHereThePassword
That will create an encrypted environment variable. To list your secrets, run the command flyctl secrets list
.
Deploy the application
Run the command flyctl deploy
. To open your already deployed application in a browser, run the command flyctl open
.
Read this jhipster user
Before deploying the app, you can test it using the docker desktop.
First, edit the file src/main/docker/app.yml
to use the docker image stting/mamazinhaflyio
(in my case):
Then run the command docker-compose -f src/main/docker/app.yml up -d
and access your application at http://localhost:8080
which is using postgres database.
My own experience with fly.io
I am running my Baby Care App on fly.io since 03 September 2022, here is the link: Mamazinha Baby Care App.
I accessed the app every day at least 10 times a day, I only got 5 downtimes the first week. After that, my wife and I didn't notice any downtime 😊! It looks like the app was always warmed up and ready to receive requests.
On the dashboard web app, you can see a lot of information about your app: https://fly.io/dashboard. My application constantly uses 226 MB from the 232 MB available. In addition, you can access the Grafana dashboard https://fly-metrics.net/ for awesome insight info 👏!
🌟Feedback
If you like this project, please, considering give it a star 🌟 to support me and enhanced the repository's visibility 🤩!
💙 Special Thanks
I just wanna say thanks to the fly.io team for adding this free high-quality free tier option! It has the bearing minimum for your MVP version and to use it to host your portfolio projects!
Thank you @pascalgrimaud for being available to chat and help me out when I've got stuck! It's important to read another point of view when I can't move on.
Last but not least, thank you JHipster Community!
Top comments (1)
Thank you for reading this post. Send me some ❤️ & 🦄 to support me and enhanced this post's visibility 🤩
If you find the content interesting, follow me 👣