Skip to content

freenet/freenetorg-website

Repository files navigation

Freenet Org Website Development Notes

Intro

This is the repository for the Freenet project website. It is built on the Kweb framework in Kotlin, and is hosted on Google Cloud. There is a staging site at https://staging.freenet.org/, and the live site is at https://freenet.org/. Pushes to the staging branch will be automatically deployed to staging, while pushes to the production branch will go live.

Source

Prerequisites

  1. A Recent Java Development Environment
  2. Gradle Build Tool
  3. IntelliJ IDEA (optional but highly recommended)

Setting up

  1. Clone the repository, two options:
    1. Command Line
      $ git clone git@github.com:freenet/freenetorg-website.git
    2. IntelliJ IDEA
      1. File -> New -> Project from Version Control -> Git
      2. Enter the URL of the repository, git@github.com:freenet/freenetorg-website.git
  2. Open the project in IntelliJ IDEA
  3. Create a new run configuration
    1. Run -> Edit Configurations...
    2. Click the + button and select Application
    3. Name the configuration freenet.org website
    4. Set the Main class to org.freenet.website.MainKt
    5. Set environment variables to FREENET_SITE_LOCAL_TESTING=true
      • This will use dummy data so no connection to the database is required
  4. Run the configuration
  5. Open a browser and navigate to http://localhost:8080/

Pull Requests

To submit improvements create a pull request against the staging branch.