Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

documentation updated #22

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 35 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,49 +10,54 @@
"dw-code" is an open-source Integrated Development Environment (IDE) designed to provide the style and look of Visual Studio Code (VS Code) while offering the power and functionality of popular C/C++ IDEs like Dev C++ and Code::Blocks. It's built using Python and the tkinter library. This repository is open for **Hacktoberfest 2023!!**

## TODO:
Before opening any issue refer to TODO.md file.

Before opening any issue refer to [TODO.md](https://github.com/rohitagr0310/dw-code/blob/main/TODO.md)

## Features

- VS Code-inspired user interface.
- Powerful code editing capabilities.
- Built-in menu bar for easy access to common functions.
- Syntax highlighting for multiple programming languages.
- Support for code autocompletion.
- Integrated file management and project organization.
- Extensible through plugins and extensions.
- Cross-platform, works on Windows, macOS, and Linux.
- VS Code-inspired user interface.
- Powerful code editing capabilities.
- Built-in menu bar for easy access to common functions.
- Syntax highlighting for multiple programming languages.
- Support for code autocompletion.
- Integrated file management and project organization.
- Extensible through plugins and extensions.
- Cross-platform, works on Windows, macOS, and Linux.

## Getting Started

To get started with "dw-code," follow these steps:

1. Clone the repository:
1. Star the repository ⭐

2. Fork the repository 🍴

3. Clone the repository:

```bash
git clone https://github.com/yourusername/dw-code.git
cd dw-code
```

```bash
git clone https://github.com/yourusername/dw-code.git
cd dw-code
```
4. Create a virtual environment (optional but recommended):

2. Create a virtual environment (optional but recommended):
```bash
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
```

```bash
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
```
5. Install dependencies:

3. Install dependencies:
```bash
pip install -r requirements.txt
```

```bash
pip install -r requirements.txt
```
6. Run the application:

4. Run the application:
```bash
python main.py
```

```bash
python main.py
```

## Contributing

Contributions are welcome! If you'd like to contribute to "dw-code," please check out our [contribution guidelines](CONTRIBUTING.md).
Expand All @@ -63,8 +68,8 @@ If you encounter any issues or have questions, please open an [issue](https://gi

## Acknowledgments

- Thanks to the Python community for creating and maintaining tkinter.
- Special thanks to the VS Code and C/C++ IDE communities for inspiration.
- Thanks to the Python community for creating and maintaining tkinter.
- Special thanks to the VS Code and C/C++ IDE communities for inspiration.

---

Expand Down
Binary file modified __pycache__/menu_bar.cpython-311.pyc
Binary file not shown.
File renamed without changes.
Loading