Solar Network
Hello there! Welcome to the main repository of the HyperNet (also known as the Solar Network). The code here is mainly about the front-end app (also known as Solian). But you can still post issues here to get help and request new features!
Sub Projects
HyperNet, the Solar Network is a microservices project in which the backends are stored in separate repositories. Here is a simple index for it.
- The Core, Gateway: Nexus
- The Auth Service: Passport
- The Posting Service: Interactive
- The Messaging Service: Messaging
- The Wallet Service: Wallet
- The Crawler: Reader
- The Attachments Service: Paperclip
- Some others may not be listed, you can search in the organization with
HyperNet.
It's the prefix of all HyperNet projects.
Tech Stack
For those people who want to know the tech stack of this project, the front-end was built by Flutter, which provides cross-platform ability.
The backend was built in Go and PostgreSQL with our very own microservice framework included in the nexus.
If you want to contribute to the project, learn more about the Code of Conduct.
Getting Started
The content below will lead you to the world of Solar Network.
For Normal Users
- Go to the Github Releases page, and download the latest release / pre-release according to your platform.
- What's the difference between stable and pre-release? The pre-release is untested by the other users and includes the new cutting-edge features, usually the pre-release is the feature drop. At the same time, due to we're not doing the API versioning, some breaking changes may break the stable release, so use the pre-release one instead.
- Create an account on the Solar Network
- Go to your email inbox to confirm your registration
- Start exploring!
For Developers
To make the Solar Network App run in debug mode on your machine, you need to install the flutter development environment, for more environments, head to https://flutter.dev.
For the Linux platform, you need to install those extra development libs:
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
sudo apt-get install -y libmpv-dev mpv
sudo apt-get install -y libayatana-appindicator3-dev
sudo apt-get install -y keybinder-3.0
sudo apt-get install -y libnotify-dev
sudo apt-get install -y libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
sudo apt-get install -y gstreamer-1.0
Then, use the flutter run for the app running in debug mode.
flutter pub get
If you want to build the release version, use the flutter build command. Learn more from the flutter docs.
flutter build <platform>