# leveldb.org **Repository Path**: mirrors_stephenplusplus/leveldb.org ## Basic Information - **Project Name**: leveldb.org - **Description**: a site for leveldb.org - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # leveldb.org This is the source code for [leveldb.org](http://leveldb.org). ## Stylus Structure The Stylus files are located under `assets/static/styl`, with the following architecture... ``` ├── assets └── styl ├── components ├── globals ├── sections └── main.styl ``` Where: * **components** — reusable components for common elements (such as buttons, forms, typography) * **globals** — reusable variables, mixins and base for the website * **sections** — individual sections of a page (header, footer, community, platforms, etc.) ## Template Structure ``` ├── assets └── jade ├── index.jade ├── footer.jade └── layout.jade ``` Where: * **layout.jade** — basic layout file for the entire website * **index.jade** — the page content (here being the landing page) * **footer.jade** — footnotes ## Contributing ### For contributors ``` git clone https://github.com/Level/leveldb.org.git cd leveldb.org npm i npm start # hack on the codez, send pull request ``` ### For maintainers `npm run deploy` builds the static site, switches to the gh-pages branch and puts the built site in the root, and then does git push origin gh-pages. ``` git fetch git checkout master # if you're not already on it git merge npm run deploy ``` ### To run in production mode on a SmartOS server, use: ``` svccfg import ./service.xml svcadm enable leveldb-org ```