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.
Alternatively, you can setup a GitHub Codespace on the project repository.
- 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
# then, change directory
cd acm-app
-
Switch to target branch.
git checkout <target branch>
-
Install the dependencies.
pnpm install
-
Run the development server.
pnpm dev
-
Open
http://localhost:3000
with your browser to see the result.
For this project, we use the GitHub Flow.
- NEVER rebase the
master
branch. - All feature contributions should be done via pull requests.
- Only use
feat:
commit prefix when merging pull requests. - Make use of
git pull --rebase
instead ofgit pull
. - Always branch out from
master
branch. - Use only
--force-with-lease
if in you need to force push.
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 (merge commit via pull request only)
- refactor: a code change that neither fixes a bug nor adds a feature
- chore: changes to auxiliary tools and libraries (dependencies)
- 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)