WasedaTime (stands for Waseda Timetable) is a non-profit & student-run open source web app for syllabus searching, course reviews and bus schedule checking at Waseda University.
Backend
You can view the repository here.
- Amazon Web Service - Fully powered by AWS.
Frontend (Client)
You can view the repository here
- Common
- Single-spa - A framework to bring together multiple JavaScript microfrontends in a frontend application.
- Styled Components - Library used for adding CSS to React components.
- Root
- Tailwind - A utility-first CSS framework packed with classes with humen-friendly name; highly customizable.
- Syllabus
- Redux - Library used to manage the state of front-end.
- Semantic UI React - Official React integration for Semantic UI, a development framework that helps create layouts with prebuilt components easily.
- Campus
- React Bootstrap - Official React integration for Bootstrap, a frequently updated development framework that helps create layouts with prebuilt components easily.
Frontend (Mobile App)
Flutter! We are just started!
Before you get started, make sure you have the following software installed on your system:
- Flutter: Follow the instructions on the Flutter website to install the SDK and configure the necessary environment variables.
- Dart SDK: Install the Dart SDK if it isn't already included in your Flutter installation.
- Android Studio (Optional): Recommended for Android app development. Includes the Android SDK and emulator.
- Xcode (Optional, macOS only): Required for iOS app development.
This project is a starting point for a Flutter application for WasedaTime:
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
- Create a GitHub account if you haven't
- If you are a member of our development team, tell me your username or email so that I can add you to our GitHub team.
- Install Git on your computer (local): https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
// By HTTP
git clone https://github.com/wasedatime/wasedatime-mobile.git
// By SSH
git clone [email protected]:wasedatime/wasedatime-mobile.git
Then move into the cloned repository:
cd wasedatime-mobile
Run git status
or git branch
to confirm that you are on master
branch
flutter pub get
To run the app on an emulator or physical device, first ensure that a device is running.
For Android:
- Open Android Studio and launch the Android Virtual Device (AVD) Manager to start an emulator.
- Or, connect a physical Android device to your computer via USB with USB debugging enabled.
For iOS (macOS only):
- Open Xcode and start the iOS Simulator.
- Or, connect a physical iOS device to your computer with a valid provisioning profile.
- Now, run the app using the following command:
flutter run
- main: The released version. The website actually viewed and used by users is run according to the code in
master
. - develop: Having the latest changes ready to be released. Sometimes different features may conflict with each other, which you would not find during the development on your branch, and that's why this
develop
branch is needed: Merge different new changes and test them withdevelop
before officially release - feature/name-of-your-feature: Should be created from
develop
. You should always develop your feature on this branch. If you are working on multiple new features, create different feature branches for each of them - hotfix: Created from
master
and directly pushed backed tomaster
after development. This is only for debugging in emergency.
We welcome any developers to submit an issue or a pull request! 😊 For any developers who want to make contribution, including our members, please refer to the following steps!
-
Make a new branch from
develop
branch called “feature/(name)”git checkout develop git checkout -b feature/{name-of-your-new-feature}
-
Then you can run
git status
orgit branch
again to confirm that you are on a new branch. -
Begin your development!
Whenever there is some progress in your work, commit it.
-
Run
git status
to check what files are changed during your development. -
Let Git know what files are ready to be committed
git add path/to/the/file // or you can add all changed files by: git add .
-
Commit your changes with a message precisely but specifically describing your changes
git commit -m "feat: styling of the clean button"
Please refer to this link about how to write a commit message: https://www.conventionalcommits.org/en/v1.0.0/
-
Push your changes to GitHub
git push origin feature/{name-of-your-new-feature}
Code editor like VScode has functionality for you to do the above steps without typing them one by one. What you need to do will not change; it just make the process more convenient.
- On the repository page, click on the
Pull Request
tab, and then click theNew pull request
button. - Set the base branch to
develop
, compare branch to your branch. - Click
Create pull request
button. - Inform us that you have created a Pull Request (PR) and we will review it.
- Continue developing if we found anything to be improved
- If everything is OK, GREAT JOB! We will merge it into
develop
. - Delete your feature branch on local
git branch -D feature/{name-of-your-finished-feature}
This project is licensed under the MIT License - see the LICENSE.md file for details