Local Password Manager app made with Svelte + Tailwindcss.
To get started, clone this repository, install the dependencies, and run the development server.
git clone https://github.com/khairul169/locker.git
npm install
npm run dev
Open your browser to http://127.0.0.1:5173 and you should see the app running.
The project is structured as follows:
src/
├── assets/
├── components/
│ ├── container/
│ └── units/
├── pages/
│ └── [page]/
├── stores/
├── styles/
└── utils/
assets/
: contains all the assets used in the application.components/
container/
: container components.units/
: unit components.
pages/
:[page]/
: page directory.
stores/
: contains stores of global states used in the app.styles/
: contains all stylesheets for the app.utils/
: contains any utility functions used by the app.