From 3f4f6be682a16e11ceb7b437446356515c34d72f Mon Sep 17 00:00:00 2001 From: Meliora Ho Date: Sun, 4 Feb 2024 02:45:13 +0000 Subject: [PATCH] Edit README.md --- README.md | 37 +++++++++++++++++++++++++- compass/components/{ => auth}/Page.tsx | 0 2 files changed, 36 insertions(+), 1 deletion(-) rename compass/components/{ => auth}/Page.tsx (100%) diff --git a/README.md b/README.md index d65912d..0c8e2dc 100644 --- a/README.md +++ b/README.md @@ -1 +1,36 @@ -# compass \ No newline at end of file +# Fall 2023 - Spring 2024: A Notion-UI website to speed up data lookup for Compass Center + +## Technologies +Next.js, TailwindCSS, Typescript, PostgreSQL + +## File setup +``` +\compass + \components + should organize the components on folders pointing to the specific pages it is displayed + \pages + store all pages + \api + \public + local assets - try to minimize them + \routes + routing logic + \styles + css files go here +``` + +## To start +``` +\\ Clone this repository +git clone https://github.com/cssgunc/compass.git +\\ Go into main folder +cd compass +\\ Install dependencies +npm install +\\ Run local environment +npm run dev +``` + +## Dev notes +- For each task, create a branch in the format '[your name]-[ticket number]-[task description]' +- Only commit your work to that branch and then make a git request to '/main' \ No newline at end of file diff --git a/compass/components/Page.tsx b/compass/components/auth/Page.tsx similarity index 100% rename from compass/components/Page.tsx rename to compass/components/auth/Page.tsx