|
1 | 1 | # OpenWebSheet |
2 | | -OpenSource Web based spreadsheet |
3 | 2 |
|
| 3 | +<<<<<<< HEAD |
4 | 4 | [<img src=https://github.com/code-by-sia/OpenWebSheet/workflows/CI/badge.svg />](https://github.com/code-by-sia/OpenWebSheet/actions?query=workflow%3ACI) |
| 5 | +======= |
| 6 | +OpenWebSheet is an open-source, web-based spreadsheet application. It runs in the browser, can be installed as a Progressive Web App (PWA), and stores spreadsheet documents in the project’s `.ows` format. |
| 7 | +>>>>>>> abec997 (docs: improve README documentation) |
5 | 8 |
|
6 | | - |
7 | | -### Installed PWA: |
| 9 | +[<img src="https://github.com/SiamandMaroufi/OpenWebSheet/workflows/CI/badge.svg" alt="CI status" />](https://github.com/SiamandMaroufi/OpenWebSheet/actions?query=workflow%3ACI) |
8 | 10 |
|
| 11 | +<<<<<<< HEAD |
9 | 12 | <img src="https://code-by-sia.github.io/OpenWebSheet/demo.png" /> |
| 13 | +======= |
| 14 | +## Demo and PWA installation |
| 15 | +>>>>>>> abec997 (docs: improve README documentation) |
10 | 16 |
|
11 | | -##### for installing the pwa app click on install icon at the url bar's right side |
| 17 | +<img src="https://siamandmaroufi.github.io/OpenWebSheet/demo.png" alt="OpenWebSheet demo" /> |
12 | 18 |
|
| 19 | +<<<<<<< HEAD |
13 | 20 | 1. <a href="https://code-by-sia.github.io/OpenWebSheet/" >Install</a> the PWA application <br /> |
14 | 21 | 2. <a href="https://code-by-sia.github.io/OpenWebSheet/demo/DEMO.ows" download="download" target="_blank" >Download</a> the `demo.ows` sample file |
15 | 22 | 3. click on load *Folder Icon* and load the sample file |
| 23 | +======= |
| 24 | +1. Open the hosted app: <https://siamandmaroufi.github.io/OpenWebSheet/> |
| 25 | +2. Install the PWA using the install icon in the browser address bar. |
| 26 | +3. Download the sample file: <https://siamandmaroufi.github.io/OpenWebSheet/demo/DEMO.ows> |
| 27 | +4. Use the folder/load icon in the app to open the sample `.ows` file. |
| 28 | +>>>>>>> abec997 (docs: improve README documentation) |
| 29 | +
|
| 30 | +## Features |
| 31 | + |
| 32 | +- Canvas-based spreadsheet rendering |
| 33 | +- Basic cell content editing |
| 34 | +- Borders |
| 35 | +- Merge and split cells |
| 36 | +- Basic formula support |
| 37 | +- Import/export support for the native `.ows` format |
| 38 | +- PWA support |
| 39 | + |
| 40 | +## Roadmap |
| 41 | + |
| 42 | +- [x] Basic structure |
| 43 | +- [x] Canvas rendering |
| 44 | +- [x] Basic content editor |
| 45 | +- [x] Borders |
| 46 | +- [x] Merge and split |
| 47 | +- [ ] Formula and expressions |
| 48 | + - [x] Basic support |
| 49 | + - [ ] Advanced features |
| 50 | +- [x] Import/export |
| 51 | + - [x] Mathematical formulas |
| 52 | + - [ ] OpenOffice/OpenDocument format support |
| 53 | +- [ ] Advanced UI features |
16 | 54 |
|
| 55 | +## Project setup |
17 | 56 |
|
| 57 | +Install dependencies: |
18 | 58 |
|
19 | | - |
20 | | -### Roadmap |
21 | | - |
22 | | -* [x] basic structure |
23 | | -* [x] canvas rendering |
24 | | -* [x] basic content editor |
25 | | -* [x] borders |
26 | | -* [x] merge and split |
27 | | -* [ ] formula and expressions |
28 | | - * [x] Basic Support |
29 | | - * [ ] Advanced features |
30 | | -* [x] import/export |
31 | | - * [x] Mathematical formulas |
32 | | - * [ ] Open office format support |
33 | | -* [ ] advanced ui features |
34 | | - |
35 | | - |
36 | | - |
37 | | -## Project setup |
38 | | -``` |
| 59 | +```sh |
39 | 60 | npm install |
40 | 61 | ``` |
41 | 62 |
|
42 | | -### Compiles and hot-reloads for development |
43 | | -``` |
| 63 | +Start the development server: |
| 64 | + |
| 65 | +```sh |
44 | 66 | npm run serve |
45 | 67 | ``` |
46 | 68 |
|
47 | | -### Compiles and magnifies for production |
48 | | -``` |
| 69 | +Build for production: |
| 70 | + |
| 71 | +```sh |
49 | 72 | npm run build |
50 | 73 | ``` |
51 | 74 |
|
52 | | -### Run your tests |
53 | | -``` |
54 | | -npm run test |
55 | | -``` |
| 75 | +Run linting: |
56 | 76 |
|
57 | | -### Lints and fixes files |
58 | | -``` |
| 77 | +```sh |
59 | 78 | npm run lint |
60 | 79 | ``` |
61 | 80 |
|
62 | | -### Run your unit tests |
63 | | -``` |
| 81 | +Run unit tests: |
| 82 | + |
| 83 | +```sh |
64 | 84 | npm run test:unit |
65 | 85 | ``` |
| 86 | + |
| 87 | +## Documentation |
| 88 | + |
| 89 | +Additional documentation is available in the [`docs/`](docs/) directory: |
| 90 | + |
| 91 | +- [Development guide](docs/development.md) |
| 92 | +- [Architecture overview](docs/architecture.md) |
| 93 | +- [User guide](docs/user-guide.md) |
| 94 | +- [Supported formats](docs/supported-formats.md) |
| 95 | + |
| 96 | +## Contributing |
| 97 | + |
| 98 | +1. Create an issue or choose an existing one. |
| 99 | +2. Create a focused branch for the change. |
| 100 | +3. Keep changes small and reviewable. |
| 101 | +4. Run linting and tests before opening a pull request. |
| 102 | +5. Update documentation when behavior, setup, or architecture changes. |
| 103 | + |
| 104 | +## License |
| 105 | + |
| 106 | +No license file is currently included in the repository. Add one before publishing or reusing the project in environments that require explicit licensing terms. |
0 commit comments