Overview
-
User-friendly interface on all devices.
-
Minimal design
-
Inspired by tha famous website When2meet
This is how you set up your project locally. To use picktime online, please visit here.
-
we use pnpm as the node package manager, but feel free to use the one you like.
- pnpm
npm install pnpm -g
- pnpm
-
-
Clone the repo
git clone https://github.com/yuaanlin/pick-time.io.git
or
git clone [email protected]:yuaanlin/pick-time.io.git
-
Install Pnpm packages
- pnpm
pnpm install
- Start the development server
- pnpm
pnpm dev
- Enjoy
picktime
at https://localhost:3000
-
-
-
Simply create your event by entering the title, possible dates and time.
-
Share the RSVP link with your friend!
-
-
-
Visit the event exclusive picktime link to scheduleyour availability.
-
Check other's availability anytime with a simple click !
-
-
-
Use the GitHub issue search — check if the issue has already been reported.
-
Check if the issue has been fixed — try to reproduce it using the latest
main
or development branch in the repository. -
Isolate the problem — create a reduced test case and a live example.
Example:
Short and descriptive example bug report title
A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.
- This is the first step
- This is the second step
- Further steps, etc.
<url>
- a link to the reduced test caseAny other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).
-
-
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/yuuanlin/pick-time.io # Navigate to the newly cloned directory cd pick-time.io # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/yuuanlin/pick-time.io
-
If you cloned a while ago, get the latest changes from upstream:
git checkout <dev-branch> git pull upstream <dev-branch>
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream <dev-branch>
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.
IMPORTANT: By submitting a patch, you agree to allow us to license your work under the same license as that used by
picktime
-