AY2223S2-CS2113-W15-4 / tp

https://ay2223s2-cs2113-w15-4.github.io/tp/
0 stars 5 forks source link

DinerDirector

This is a project template for a greenfield Java project. It's named after the Java mascot Duke. Given below are instructions on how to use it.

Setting up in Intellij

Prerequisites: JDK 11 (use the exact version), update Intellij to the most recent version.

  1. Fork this repo, and clone the fork into your computer.
  2. Open the application Intellij IDEA.
    1. On the top left of the navigation bar, select File > Open....
    2. Navigate to the folder, and select the folder containing the DinerDirector files that was cloned.
    3. By default, if there is a build.gradle in the project root, Intellij treats it as a Gradle project by default. Just in case it didn't work follow the guide Importing a Gradle project.
  3. Once the project is opened, Configure the JDK: Follow the guide JetBrains Intellij IDEA: Configure JDK to ensure Intellij is configured to use JDK 11.
  4. Verify the setup
    1. Once the above steps are completed, locate the file src/main/java/dinerdirector/DinerDirector.java, right-click and select Run 'DinerDirector.main()'
    2. If setup is correctly done, this is what you should see:
      
      Welcome to DinerDirector! Please type "help" for a list of valid commands.
      What can I do for you?
      >

Build automation using Gradle

Testing

I/O redirection tests

JUnit tests

Checkstyle

CI using GitHub Actions

The project uses GitHub actions for CI. When you push a commit to this repo or PR against it, GitHub actions will run automatically to build and verify the code as updated by the commit/PR.

Documentation

/docs folder contains the project documentation.

Steps for publishing documentation to the public:

  1. If you are using this project template for an individual project, go your fork on GitHub.
    If you are using this project template for a team project, go to the team fork on GitHub.
  2. Click on the settings tab.
  3. Scroll down to the GitHub Pages section.
  4. Set the source as master branch /docs folder.
  5. Optionally, use the choose a theme button to choose a theme for your documentation.