https://github.com/theopenlane/openlane-fyi
Openlane FYI
https://github.com/theopenlane/openlane-fyi
compliance compliance-documents gdpr grc iso27001 openlane soc2
Last synced: 4 months ago
JSON representation
Openlane FYI
- Host: GitHub
- URL: https://github.com/theopenlane/openlane-fyi
- Owner: theopenlane
- Created: 2025-06-16T15:16:01.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-12-07T05:39:27.000Z (6 months ago)
- Last Synced: 2026-01-15T21:59:15.589Z (5 months ago)
- Topics: compliance, compliance-documents, gdpr, grc, iso27001, openlane, soc2
- Language: Astro
- Homepage: https://www.openlane.fyi
- Size: 2.25 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Openlane FYI
A short, single page site to give some basic information to potential customers, investors, or interested community.
## Project Structure
This site uses [Astro](https://astro.build/) which uses the following structure:
```text
/
├── public/
│ └── favicon.svg
├── src/
│ ├── layouts/
│ │ └── Layout.astro
│ └── pages/
│ └── index.astro
└── package.json
```
To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
## Getting Started
To get the project setup, you must copy the config example into the root of your directory. All `.env` files are ignored by .gitignore so you do not have to worry about accidentally committing secrets.
```
cp config/.env.example .env
```
## Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |