Skip to content

Commit 7c93da0

Browse files
docs: update README.md
1 parent 7e9a41c commit 7c93da0

File tree

2 files changed

+73
-8
lines changed

2 files changed

+73
-8
lines changed

LICENSE

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright 2024 BestCodes
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 66 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,73 @@
22

33
[![CodeQuill](https://img.shields.io/badge/CodeQuill-Code%20Editor%20and%20Storage-blue)](https://github.com/codingwithkid/codequill)
44

5-
CodeQuill is a free and easy way to organize, store, edit, and share code on your device. It is a web-based code editor that allows you to create and manage code snippets.
5+
[![Logo](app/favicon.ico)](https://github.com/The-Best-Codes/codequill)
66

7-
## How to Use
7+
CodeQuill is a web-based code editor designed to offer a free, easy, and efficient way to organize, store, edit, and share code snippets directly from your device. Whether you're working on personal projects or simply storing snippets for future reference, CodeQuill provides a seamless experience for managing your code.
88

9-
To start using CodeQuill, follow these steps:
9+
## Features
1010

11-
1. Download the project from GitHub
12-
2. Run `node scripts/init-db.js` in the project directory to initialize the database
13-
3. Run `npm run dev` to start the development server
14-
4. Open `http://localhost:3000` in your web browser to access the CodeQuill interface
11+
- **Syntax Highlighting:** Enjoy coding with syntax highlighting that supports multiple languages.
12+
- **Code Storage:** Save your snippets in the a local database for easy access anywhere on your network.
13+
- **Share**: Share your code snippets with other devices on your network to easily transfer codes.
14+
- **Comfortable Interface:** The editor is designed to be as intuitive and familiar as possible. The experience should remind you of working in VS Code.
1515

16-
Alternatively, you can run `npm run build && npm start` to build and start the production server.
16+
## Getting Started
17+
18+
### Prerequisites
19+
20+
- Node.js installed on your machine
21+
- A modern web browser
22+
23+
### Installation
24+
25+
1. Clone the repository to your local machine:
26+
27+
```bash
28+
git clone https://github.com/The-Best-Codes/codequill.git
29+
cd codequill
30+
```
31+
32+
2. Install the required dependencies:
33+
34+
```bash
35+
npm install
36+
```
37+
38+
3. Initialize the database:
39+
40+
```bash
41+
node scripts/init-db.js
42+
```
43+
44+
4. Start the development server:
45+
46+
```bash
47+
npm run dev
48+
```
49+
50+
5. Access the CodeQuill interface by opening `http://localhost:3000` in your web browser.
51+
52+
### Building for Production
53+
54+
To deploy CodeQuill for production use:
55+
56+
```bash
57+
npm run build && npm start
58+
```
59+
60+
This command builds the application for optimal performance and starts the production server.
61+
62+
## Contributing
63+
64+
We welcome contributions to CodeQuill! Whether you're looking to fix bugs, add new features, or improve documentation, please feel free to submit a pull request.
65+
66+
## License
67+
68+
CodeQuill is released under the MIT License. See the LICENSE file for more details.
69+
70+
## Support
71+
72+
For support or to report issues, please visit the [issues page](https://github.com/The-Best-Codes/codequill/issues).
73+
74+
Thank you for considering CodeQuill for your coding needs!

0 commit comments

Comments
 (0)