Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Contact Joy Sangsrichan (RIT Student)or Austin Heisey (RIT Student) to get access to Jira and GitLab as well as database credentials. Feel free to ping us on Slack if you need help setting up the environment too!

Install Docker and IntelliJ

Docker for Windows/MacOS - https://docs.docker.com/get-docker/

Docker for Fedora - sudo dnf install docker

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

Connect Docker with IntelliJ


Connect to the MySQL Database


Running the Backend


Running the Frontend


Accessing Database Through Command Line


  • No labels