-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
51bb418
commit 384a153
Showing
392 changed files
with
109,218 additions
and
1,207 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Contributing to Puter | ||
|
||
## Essential / General Knowledge | ||
|
||
### Repository Dichotomy | ||
|
||
- Puter's GUI is at the root; `/src` is the GUI | ||
- Puter's backend is a workspace npm package; | ||
it resides in `packages/backend(/src)` | ||
|
||
The above may seem counter-intuitive; backend and frontend are siblings, right? | ||
Consider this: by a different intuition, the backend is at a "deeper" level | ||
of function; this directory structure better adheres to soon-to-be contributors | ||
sifting around through the files to discover "what's what". | ||
|
||
The directory `volatile` exists _for your convenience_ to simplify running | ||
Puter for development. When Puter is run | ||
run with the backend with this repository as its working directory, it | ||
will use `volatile/config` and `volatile/runtime` instead of | ||
`/etc/puter` and `/var/puter`. | ||
|
||
## See Next | ||
|
||
- [Backend Documentation](../../packages/backend/doc/contributors/index.md) | ||
<!-- - [Frontend Documentation](./frontend.md) --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Copyright (C) 2024 Puter Technologies Inc. | ||
|
||
This file is part of Puter. | ||
|
||
Puter is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Affero General Public License as published | ||
by the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Affero General Public License for more details. | ||
|
||
You should have received a copy of the GNU Affero General Public License | ||
along with this program. If not, see <https://www.gnu.org/licenses/>. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import backend from '@heyputer/backend'; | ||
export default backend; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"ignore": ["**/!(*.js|*.css)", "**/assets/**"], | ||
"license": "doc/license_header.txt", | ||
"licenseFormats": { | ||
"js": { | ||
"prepend": "/*", | ||
"append": " */", | ||
"eachLine": { | ||
"prepend": " * " | ||
} | ||
}, | ||
"dotfile|^Dockerfile": { | ||
"eachLine": { | ||
"prepend": "# " | ||
} | ||
}, | ||
"css": { | ||
"prepend": "/*", | ||
"append": " */", | ||
"eachLine": { | ||
"prepend": " * " | ||
} | ||
} | ||
}, | ||
"trailingWhitespace": "TRIM" | ||
} |
Oops, something went wrong.