GApe

GApe (Get A Page Easily), an interactive design tool for creating one-page content such as a curriculum vitae or leaflets for both personal and commercial use.

Stars
3
Committers
2

GApe

GApe (Get A Page Easily), an interactive design tool for creating one-page content such as a curriculum vitae or leaflets for both personal and commercial use.

Run

  • Before Running
npm i
  • Debug Mode
npm run dev
  • Build
npm run build

Interface Previews

Todo

System Flow

Contribution

Conventional Commits

Based on:

Git + Github Work Flow

Create a new branch

git switch main # make sure you are on the main branch
git pull # keep the main branch up to date
git switch -c branchname # create and switch to a new branch
git push -u origin branchname # publish the new branch to remote

After making changes on the new branch

git add . # stage all the changed files
git commit -m "message" # commit changes
git push # publish the changes to remote

Open an pull request on Github

If you want to pull another remote branch that was not created by you

git fetch origin remotebranchname # get remote branch to local
git switch remotebranchname