Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the Bootstrap config.json file?

i saw you mentioning that you use the Bootstrap config.json file here: Use the Bootstrap config.json file with Bower

I would like to know how i can use that file to furthur tweak my already customized version?

I'm just getting started with programming so please be forgiving if this is basic. Thanks

like image 400
justharshal Avatar asked Sep 19 '14 16:09

justharshal


People also ask

How do I open a json config file?

In the Project Explorer view, expand the plug-in project node. Expand the plugin folder node. Double-click the config. json file, or right-click the file and select Open with > PDK JSON Editor.

What is the use of config json?

json is the main configuration file. Data from config. json is used to configure virtual machine. After editing file make sure that your JSON syntax is valid.

Should I use json for config?

With so many better options for configuration languages, there's no good reason to use JSON. If you are creating a new application, framework, or library that requires configuration choose something other than JSON.

Can we use json to define a configuration file?

To deploy a version of your app with the Admin API, you define the configuration details of your version using a JSON formatted file. You can either manually create the configuration file or convert an existing app.


1 Answers

  • Go to http://getbootstrap.com/customize/ and fill the form with your custom settings.
  • At the bottom of the page, click on "Compile and Download". You will get a bootstrap.zip file containing all the customized files and a config.json file.
  • Insert the files you need in your project
  • If you need to regenerate the customized files, go to https://gist.github.com/ and create a new gist containing the content of the config.json file
  • Get the unique id of the gist in its URL
  • Go to http://getbootstrap.com/customize/?id=GISTID (replace GISTID with the id of the gist you just created)
  • The form will be pre-filled with your previous settings. Don't forget to update your gist with the new config.json file for future use.
like image 122
db0 Avatar answered Oct 13 '22 05:10

db0