An open source code editor for the web, written in JavaScript, HTML and CSS.
Перейти к файлу
Joel Brandt 1bb34d56d9 updated less makefile to build css files in the root src directory (to fix relative path issues). added output css files to root .gitignore 2012-01-05 15:37:37 -08:00
src updated less makefile to build css files in the root src directory (to fix relative path issues). added output css files to root .gitignore 2012-01-05 15:37:37 -08:00
test Merge remote-tracking branch 'origin/master' into issue-41 2012-01-03 16:16:41 -08:00
.gitignore updated less makefile to build css files in the root src directory (to fix relative path issues). added output css files to root .gitignore 2012-01-05 15:37:37 -08:00
.gitmodules Fixed URL for CodeMirror module 2011-12-07 13:49:06 -08:00
README.md Added shorter command for submodule update in README 2011-12-07 14:12:04 -08:00

README.md

Overview

This repository is for the core Brackets editor, written in HTML/CSS/JS. The desktop application shell, which adds native menu and local file access functionality, lives in a separate repo.

Getting started

In addition to pulling the source from github, you'll need to also grab submodules referenced by Brackets. To do so, first make sure you have SSH access to github (since the submodule is referenced via a git: URL rather than https). Then run the following command in the root of your Brackets repo:

git submodule update --init --recursive

See Pro Git section 6.6 for some caveats when working with submodules.

To test if everything's working, load index.html into Safari (Chrome won't work, see below). You should see a message with a blue background, and an editor area below that with a line of code in it.

Known Issues

  • Loading index.html directly into Chrome from the local filesystem will not work (the LESS processing will fail) due to Chrome security restrictions. You can run it within the shell app, or load it into a different browser, like Safari.