Notify is a web application built with SvelteKit, TailwindCSS, and PostgreSQL. It allows users to create, update, and manage notes.
-
Clone the repository:
git clone https://github.com/ifsvivek/Notify.git cd Notify
-
Install dependencies:
npm install
-
Set up environment variables:
- Copy
.env.example
to.env
and fill in the required values.
- Copy
To start the application in development mode:
npm run dev
To build the application for production:
npm run build
To preview the production build:
npm run preview
Or just open the live demo.
This project uses Prettier for code formatting. To check the code formatting:
npm run lint
To automatically format the code:
npm run format
TailwindCSS is used for styling. The configuration can be found in [tailwind.config.js
].
SvelteKit is used as the framework. The main entry point is [src/app.html
].
The application requires the following environment variables:
- [
POSTGRES_URL
]: The connection string for the PostgreSQL database.
Prettier configuration is located in [.prettierrc
].
This project is licensed under the MIT License.