James-Leste / 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.
https://gape-xi.vercel.app
3 stars 0 forks source link
draggable-elements genereator nextjs postgresql react redux supabase

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

npm i
npm run dev
npm run build

Interface Previews

Todo

System Flow

image

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