Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

IntelliJ - https://www.jetbrains.com/idea/download/#section=windows


Create a MySQL Docker Container

  • Make sure Docker is running
    • docker run hello-world
  • Create a MySQL container
    • docker pull mysql/mysql-server:latest
    • docker run -p 3306:3306 --name launch-finance -e MYSQL_ROOT_PASSWORD=PASSWORD -d mysql (Contact admins for password)
  • Open up Docker Dashboard and start the container