Welcome to SvelteKit Contacts! This project is a simple contacts list application built with SvelteKit.
Before you begin, ensure you have the following installed:
Clone the repository:
git clone https://github.com/pachecowillians/sveltekit-contacts.git
Navigate to the project directory:
cd sveltekit-contacts
Install dependencies:
npm install
To run the application locally, use the following command:
npm run dev
This will start the development server, and you can access the application at http://localhost:5000.
To ensure code quality, we use ESLint and Prettier. Run the following commands to lint and format the code:
# Run ESLint
npm run lint
# Run Prettier
npm run format
To build the application for production, use the following command:
npm run build
The production-ready files will be generated in the build
directory.