AutoBase, a car advert CRUD application that uses localStorage.
First, need to clone the repository
HTTPS
clone
git clone https://github.com/metecan/autobase.git
SSH
clone
git clone [email protected]:metecan/autobase.git
On Local:
# Install packages
yarn
# Run the project
yarn dev
After the steps just open localhost:3000
in your browser.
Or you can just visit autobase.metecan.dev
Tecnology | Description |
---|---|
NextJS | a react framework |
TypeScript | a superset for javascript |
SASS | styling preprocessor package |
zustand | global state management |
react-toastify | ready-to-use notification package |
the src
folder is structured as follows
.
└── autobase/
├─── src/
│ ├── app/
│ │ ├── new/ `add new advert page`
│ │ └── showcase/ `list all adverts page`
│ ├── components/
│ ├── hooks/
│ ├── models/
│ ├── store/
│ └── utils/
└── ...
Jan 28, 18:23