Skip to content

SpaceApi/website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2198ece · Feb 3, 2025
Feb 3, 2025
Nov 12, 2024
Jun 19, 2021
May 25, 2020
Jan 11, 2025
Nov 18, 2020
Jun 19, 2021
Aug 24, 2019
Apr 10, 2019
Apr 25, 2024
Aug 17, 2020
Oct 8, 2021
Jun 19, 2021
Feb 3, 2025
Jun 7, 2021
Nov 12, 2024
Apr 12, 2024

Repository files navigation

spaceapi.io

GitHub CI Docker Image

These are the sources for the SpaceAPI website.

The website is generated using Lektor, a static site generator written in Python. This simplifies hosting and makes the website very fast.

Dev Setup

Variant A: Virtualenv

Prerequisites:

  • Python 3
  • npm

Create and activate a virtualenv:

python3 -m venv VENV
source VENV/bin/activate

Install dependencies:

pip install -U -r requirements.txt

Run dev server:

lektor server -f scsscompile

Now open http://localhost:5000/ in your browser.

Variant B: Docker

Prerequisites:

  • Docker

To use docker you can run:

docker build -t website -f Dockerfile_dev .
docker run -v $(pwd):/code -it -p5000:80 website

Then open http://localhost:5000

Adding an App/Library/Tool (aka "Stuff")

With Lektor

  1. Fork this repository on GitHub
  2. Run the dev setup as described above.
  3. Go to http://localhost:5000/admin/root:stuff/preview and press the "+" icon in the top left part of the navigation to add a new subpage
  4. Choose the model "Stuff" and pick a title. An appropriate id will be automatically suggested.
  5. Click "Add Child Page"
  6. Fill out the form. To add a screenshot, click on "Add Attachment" in the left navigation.
  7. Commit the changes in the file system and submit the changes as a pull request against the upstream project

Without Lektor

  1. Fork this repository on GitHub
  2. In the content/stuff/ directory, copy one of the existing models and adjust it
  3. Make sure to replace the screenshot image with an image of your own
  4. Commit the changes in the file system and submit the changes as a pull request against the upstream project

Deployment

The website should auto-deploy after a push to master. The update might take a few minutes though.

Schema Docs

Schema documentation is generated from the schema. To update:

python3 generate_schema_docs.py ../schema/14.json > content/docs/contents.lr