Skip to content

AlonaKot/JSON

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JSON

  1. Create an external repository with a name JSON.
  • Open https://github.com/, Login in
  • Go to tab "Repositories"
  • Press "New"
  • Enter the name of the repository, make it public
  • Press "create repository"
  1. Clone repository JSON to the local computer.
  • open GitBash in the folder where the repository will be stored
  • enter the command on the command line git clone + link to the repository we want to clone
  1. Create file inside local JSON new.json.
  • cd JSON - go to local repository
  • cat > new.json
  • ctrl + c - get out of editing
  1. Add file on git.
  • git add new.json - to add a particular file
  • git add . - to add all files
  1. Commit the file.
  • git commit -m "new file"
  1. Submit a file to an external GitHub repository.
  • git push
  1. Edit file content new.json - write information about yourself (name, age, number of pets, future desired salary). Write everything in the format JSON.
  • vim new.json
  • press "i"
  • enter data
{
	"full_name": "Alona Kot",
	"age": 25,
	"Pets": 1,
	"disired_Salary": "600$"
}
  • press "esc" enter :wq
  1. Push changes to an external repository.
  • git add new.json - add the changed file to git
  • git commit -am "edit file" - commit changes
  • git push - push modified file to external repository
  1. Create file preferences.json
  • cat > preferences.json
  1. To file preferences.json add information about your preferences (Favorite movie, favorite series, favorite food, favorite season, side you would like to visit) in the format JSON.
  • Enter text
{
"favorite_movie": "Indiana Jones",
"favorite_serias": "Scrubs",
"favorite_food": "Burgers",
"country_you_would_like_to_visit": "Switzerland"
}
  • ctrl + c - get out of editing
  1. Create file skills.json add information about the skills that will be studied on the course in the format JSON
  • cat > skills.json
  • Enter data:
{
	"skills": [
		"Basic theory",
		"Client-server architecture",
		"HTTP Server request methods",
		"HTTP Server responses codes",
		"Structures of requests and responses",
		"JSON, XML. Their structure",
		"API testing",
		"Removing and reading logs",
		"POSTMAN, FIDLER",
		"VPN",
		"Dev Tools for web browsers",
		"Mobile testing",
		"Feature iOS, Android, guidelines",
		"Building iOS Apps with Xcode",
		"Building Android Applications with Android Studio",
		"Interception of mobile traffic (sniffing) via CHARLES",
		"Proxy settings on iOS and Android",
		"Terminal Linux Ubuntu. Copying, creating, viewing, moving files on servers without a graphical interface",
		"Simple bash scripting, automation of routine tasks on the server",
		"Access to remote servers",
		"SQL fundamentals (Create, Delete, Drop, Insert Into, Select, From, Where, Join",
		"GIT",
		"JMETER",
		"Scrum Development Methodology",
		"Python. Creation of own client-server application." ]
}
  • ctrl + c - get out of editing
  1. Upload 2 files at once to an external repository.
  • git add .
  • git commit -m "new files"
  • git push
  1. Create a file on the web interface bug_report.json.
  • In the repository JSON press "add file"
  • Choose "Create new file"
  • Enter the file name
  1. Do Commit changes (save) changes on the web interface.
  • Press the button "Commit new file"
  1. Modify the file on the web interface bug_report.json, add a bug report in the format JSON.
  • Open file bug_report.json Select edit. Enter text
{
"Summary": "Displaying a characteristic associated with a deleted group",
"Priority": "Major",
"Severity": "Midle",
"Status": "To do",
"Environment": "Desktop, Windows10 x64, Chrome97",
 "Descriprion": {
    "Precondition": [
        "Authorization in your personal account",
        "Switch the mode to store management (store_url/admin/home)",
        "In the sidebar, expand the 'Catalog' list",
        "The submenu 'Characteristics' is open",
        "Characteristics 'Test', 'Test 1', 'Test 2' are included in the group of characteristics 'Overall dimensions'",
        "The subgroup 'Groups of characteristics' is opened" ],
    "Steps to Reproduce": [
        "Click on the kebab menu next to the group 'Dimensions'",
        "Select the 'Delete' menu in the kebab" ],
    "Actual Result": [
       "Group deleted",
       "When switching to the 'Characteristics' tab, the characteristics 'Test', 'Test 1', 'Test 2' are displayed with binding to the deleted group" ],
    "Expected Result": [
       "Group deleted",
       "When switching to the 'Characteristics' tab, the characteristics 'Test', 'Test 1', 'Test 2' are displayed without binding to the remote group" ],
   },
 "Attachment": "https://drive.google.com/file/d/1KAg5XKZQIQC6zYaOxrDbs2ng1LBuOxcz/view?usp=sharing",
 "Assignee": null,
 "Reporter": "Alona Kot"
}
  1. Do Commit changes (save) changes on the web interface.
  • Press the button "Commit changes".

17.Synchronize external and local repository JSON

  • git pull

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors