1
0
mirror of https://github.com/adobe/brackets.git synced 2024-11-20 09:53:00 +01:00
Go to file
2011-12-16 13:43:16 -08:00
src Merge in latest CodeMirror 2011-12-16 13:43:16 -08:00
test Merge pull request #13 from adobe/initial-fileio-work 2011-12-15 17:35:04 -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

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.