Documentation "type.json" - MarcusIsLion/ProjectPulse GitHub Wiki

Documentation of type.json

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.

File structure

The file is structured in JSON format and contains the following keys:

Key: type

  • Description:
    Defines the type of project.
  • Example:
    "type": "Game website"

Key: state

  • Description:
    Represents the current status of the project.
  • Possible values:
    1. "Stoped": The project is abandoned.
    2. "Standby": The project is paused.
    3. "Development": The project is in development.
    4. "Finished": The project is complete.
  • Example:
    "state": "StandBy"

Key: visual

  • Description:
    Determines project visibility.
  • Possible values:
    1. "hidden": The project is hidden.
    2. "visible": The project is visible.
  • Example:
    "visual": "hidden"

Key: language

  • Description:
    Lists the programming languages used in the project.
  • Possible values:
    • String listing one or more programming languages, separated by slashes (/).
  • Example:
    "language": "PHP/HTML/CSS/JS/SQL"

So this is in complete example for the file "type.json":

{
"type": "Game website",
"state": "Standby",
"visual": "hidden",
"language": "PHP/HTML/CSS/JS/SQL"
}

⚠️ **GitHub.com Fallback** ⚠️