forked from lukeczapla/javacoderun
-
Notifications
You must be signed in to change notification settings - Fork 1
Developer Quickstart
Matthew edited this page May 13, 2021
·
7 revisions
- Sign up for a GitHub account (if you don't already have one)
- Reach out to marod424 to become a collaborator of the tamarisk repo
- Accept the invitation email granting you collaborator access
- Download git for your OS
- Navigate to a local directory of your choice (e.g. ~/projects/)
cd ~/projects/ - Clone the repository
git clone https://github.com/marod424/tamarisk.git - Open the tamarisk project in an IDE of your choice (Intellij recommended)
(Optional) If you prefer a GUI over a CLI
- Download a version control GUI application of your choice (e.g. GitHub Desktop)
- Follow the documentation to clone a repository
- Open the tamarisk project in an IDE of your choice (Intellij recommended)
The following steps are specific to Intellij, but should parallel other IDEs.
- Make sure the MyApp configuration is selected in the dropdown between the build (green hammer icon) and run (green play icon) buttons
- Click the Run button
- The bottom drawer should open to the Run tab with a log of the resultant output
- You should get a DB connection error, which we discuss in the next section
The code base expects a MySQL connection to run. Please check out the MySQL Quickstart wiki for detailed instructions on how to connect to a local MySQL DB.
You are ready to begin contributing to the repo! Not sure where to begin? Check out the wiki home page to familiarize yourself with the project and community of other collaborators. Ready to start coding? Please check out the GitFlow Quickstart for detailed instructions on how to properly implement code into the repo.