https://github.com/abstract-ide/site
https://github.com/abstract-ide/site
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/abstract-ide/site
- Owner: Abstract-IDE
- License: mit
- Created: 2022-07-24T08:20:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-11T01:12:19.000Z (over 3 years ago)
- Last Synced: 2025-01-11T02:48:44.583Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://abstract-ide.github.io/site/
- Size: 2.95 MB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# The source code of Abstract-IDE's website
### Installation
```
$ yarn
```
### Local Development
```
$ yarn start
```
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
### Build
```
$ yarn build
```
This command generates static content into the `build` directory and can be served using any static contents hosting service.
### Deployment
Using SSH:
```
$ USE_SSH=true yarn deploy
```
Not using SSH:
```
$ GIT_USER= yarn deploy
```
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
## THANKS to
[Docusaurus](https://docusaurus.io/).