Hey there,
does someone of you know some decent DBaaS to host temporary databases for testing purpose?
Or what is your way of developing new applications (non-business related services)? Do you run your database locally? Do you have your own servers running?
Thanks for a quick answer. It might help me with my current project.
Yours rr
Running a database is really simple, especially if its just for development. I usually use docker-compose, so its just a matter of writing the compose file, installing docker-compose and running
docker-compose up -d
. Here is an example.https://github.com/dessalines/lemmy/blob/master/docker/prod/docker-compose.yml