Documentation "type.json" - MarcusIsLion/ProjectPulse GitHub Wiki
The file type.json
contains information about a project. This file can be edited manually to adjust project parameters, such as site type, current state, visibility and programming languages used.
The file is structured in JSON format and contains the following keys:
-
Description:
Defines the type of project.
-
Example:
"type": "Game website"
-
Description:
Represents the current status of the project.
-
Possible values:
- "Stoped": The project is abandoned.
- "Standby": The project is paused.
- "Development": The project is in development.
- "Finished": The project is complete.
- "Stoped": The project is abandoned.
-
Example:
"state": "StandBy"
-
Description:
Determines project visibility.
-
Possible values:
- "hidden": The project is hidden.
- "visible": The project is visible.
- "hidden": The project is hidden.
-
Example:
"visual": "hidden"
-
Description:
Lists the programming languages used in the project.
-
Possible values:
- String listing one or more programming languages, separated by slashes (/).
- String listing one or more programming languages, separated by slashes (/).
-
Example:
"language": "PHP/HTML/CSS/JS/SQL"
{
"type": "Game website",
"state": "Standby",
"visual": "hidden",
"language": "PHP/HTML/CSS/JS/SQL"
}