A task management app built for me, for you and for everyone
Are you constantly stressed about the tasks you need to do?
Fret not, Duke is here to help you!
Why use Duke? Because it
- is easy to learn and use
- comes
with a subscription price of $10/monthFREE forever
The project is named after the Java mascot Duke. It builds upon a template for a greenfield Java project provided by the CS2103/T teaching team.
The set-up is easy. Simply,
- Download the jar file here.
- Copy the jar file into an empty folder.
- Open a terminal at that folder.
- Run
java -jar duke.jar
and you are good to go! 😎
- Managing todos
- Managing events and deadlines
- Saving of tasks to the hard disk at all times
- Searching tasks by their descriptions
- Reminding users of their upcoming undone tasks
- GUI support
Prerequisites: JDK 11, update Intellij to the most recent version, enable the Gradle plugin in Intellij.
-
Open Intellij (if you are not in the welcome screen, click
File
>Close Project
to close the existing project first) -
Open the project into Intellij as follows:
- Click
Open
. - Select the project directory, and click
OK
. - If there are any further prompts, accept the defaults.
- Click
-
Configure the project to use JDK 11 (not other versions) as explained in here.
In the same dialog, set the Project language level field to theSDK default
option. -
Ensure that the selected version of
Gradle JVM
matches the JDK used. -
After that, locate the
src/main/java/duke/Launcher.java
file, right-click it, and chooseRun Launcher.main()
(if the code editor is showing compile errors, try restarting the IDE). If the setup is correct, you should see something like the below as the output: