CopyDoc is an open source software for creating a document with iterate copy of text on paper(s). It was launched on 9 May, 2023.
.
├── css/ # External styling
├── images/ # Images and logo
├── js/ # Custom javascript codes
├── vendors/
│ ├── css/ # Extra CSS vendor
│ ├── font-awesome/ # For fa fonts
│ ├── jquery/ # JQuery vendor
│ ├── js/ # Extra Js vendor
│ └── typicons/ # For typcn fonts
├── .gitignore # git ignore list
├── display.php # print page
└── index.html # Home/editing page
There are mainly two ways to make use of this software,
- Visit CopyDoc Online Server to get started or
- Install and configure CopyDoc on your PC for offline use.
- Firstly, you have to install Xampp on your PC for local hosting, visit xampp download page to download.
- Install Xampp on your PC.
- Click Download to get CopyDoc source code (Zip file)
- Extract the zip file to
C:\Xampp\htdocs
(For Windows OS), or/opt/lampp/htdocs
(For Linux OS), or/Applications/XAMPP/htdocs
(For Mac OS)
Note: You can find htdocs
location (in respect to your PC's Operating System) by checking xampp site.
- After you have successfully extract zip file into
htdocs
folder, openXampp
and startApache
- Open your Web Browser and run
localhost/copydoc-production
This project is open for contributions. The production branch
includes the commits that will be uploaded to CopyDoc Online Server for updates. The test branch
is open to the public to contribute, and the commits pushed will be reviewed by selected contributors
before they are merged to production branch
.