AutoBase, a car advert CRUD application that uses localStorage.
First, need to clone the repository
HTTPS clone
git clone https://github.com/metecan/autobase.gitSSH clone
git clone [email protected]:metecan/autobase.gitOn Local:
# Install packages
yarn
# Run the project
yarn devAfter 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




