Welcome to the FEU Tech ACM App repository!
This repository contains the FEU Tech ACM Organization's official cross-platform application source code.
The app is being developed to serve as the central platform for communication, collaboration, and promotion of every ACM member and officer in education, opportunities, and beyond.
-
Clone the repository and change directory.
git clone https://github.com/FEUTechACM/acm-app.git acm-app # or git clone [email protected]:FEUTechACM/acm-app.git acm-app cd acm-app
-
Switch to the
develop
branch or target branch.git checkout develop # or git checkout <branch-name>
-
Branch out from
develop
if not on target branch.git checkout -b <branch-name>
-
Install the dependencies.
yarn install
-
Run the development server.
yarn dev
-
Open http://localhost:3000 with your browser to see the result.
For this project, we use the GitFlow Workflow.
- Do not commit directly to
master
anddevelop
branch. - Feature branch should be MERGED to
develop
branch. - Hotfix and release branch should be MERGED to
master
branch anddevelop
branch. - Do not nest branch names e.g.
feature/parent/child
.
- NEVER rebase the
master
anddevelop
branch. - Make use of
git pull --rebase
instead ofgit pull
. - Frequently rebase your feature branch against develop.
- Always branch out from
develop
orfeature
branch. - Use only
--force-with-lease
if in need to force push. - Make use of
git commit --amend
if you need to edit your commit message. - Make use of
git rebase -i
if you need to modify your commit history.
We adopt the Conventional Commits specifications aligned with Semantic Versioning with a few modifications.
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Note: An (*) asterisk before the commit description indicates that there is more information written in the commit message body.
- fix: a bugfix
- feat: a new feature
- refactor: a code change that neither fixes a bug nor adds a feature
- chore: changes to the build process or auxiliary tools and libraries such as documentation generation
- style: changes that do not affect the meaning of the code (whitespace, formatting, missing semi-colons, etc)
- docs: documentation only changes
- test: adding missing tests or correcting existing tests
- perf: a code change that improves performance
- ci: changes to our CI configuration files and scripts
- build: changes that affect the build tool or external dependencies (example scopes: gulp, broccoli, npm)
- revert: revert to a commit
- BREAKING CHANGE: introduces a breaking API change (correlating with Semantic Versioning)
- Web
- Google Play Store
- Microsoft Store - Coming Soon
- Apple App Store - Coming Soon
- Samsung Galaxy Store - Coming Soon
- Huawei AppGallery - Coming Soon
- Amazon App Store - Coming Soon
- Meta Oculus - Coming Soon
- Sir Abraham Magpantay - Adviser
- Guennevere Rito - Project Manager
- Alpha Romer Coma - Webmaster
- Emily Tan Sanchez - Branding Officer
- Francis Chuegan - Branding Officer
Copyright FEU Tech ACM Student Chapter. All rights reserved.
Licensed under the Apache-2.0 license.