2016-03-05 04:54:37 +01:00
|
|
|
# Vervis
|
|
|
|
|
|
|
|
**Vervis** is a project hosting and management application, with a focus on
|
2018-03-31 16:58:33 +02:00
|
|
|
software projects and decentralization. There is still a lot to do, but if you'd
|
2018-03-31 16:39:12 +02:00
|
|
|
like to try it, a few things more or less work. See below for details.
|
2016-03-05 04:54:37 +01:00
|
|
|
|
2018-03-31 16:59:12 +02:00
|
|
|
Vervis is free software, and is committed to software freedom. Most of its code
|
|
|
|
is in the public domain using the CC0 Public Domain Dedication. The application
|
2018-03-31 17:03:56 +02:00
|
|
|
as a whole however is released under AGPL version 3. For the legal details, see
|
|
|
|
the file `COPYING`. Please use and reuse Vervis for a Good purpose, and share
|
|
|
|
your work too in the same spirit.
|
2016-03-05 04:54:37 +01:00
|
|
|
|
2018-03-31 16:39:12 +02:00
|
|
|
## Try It
|
|
|
|
|
|
|
|
You can either use the existing instance mentioned below, or install your own
|
|
|
|
instance (see `INSTALL.md`).
|
|
|
|
|
|
|
|
My focus has been on writing the backend side of features and exploring various
|
|
|
|
experimental features. As a result, the user interface and visual design and
|
|
|
|
page styles (i.e. the whole UX and UI) are in a bad shape right now, so I want
|
|
|
|
to write a few little guidelines to help you find your way until this situation
|
|
|
|
improves.
|
|
|
|
|
2022-06-27 22:21:05 +02:00
|
|
|
There is a Vervis instance running at <https://vervis.peers.community>, and I
|
2018-03-31 16:39:12 +02:00
|
|
|
store my code on it. Feel free to use it and try it, however do please treat it
|
|
|
|
as a demo, as it's not a reliable stable instance for general use yet. If for
|
|
|
|
any reason you do with to keep some code and tickets etc. on it for actual use,
|
|
|
|
please contact me to let me know.
|
|
|
|
|
|
|
|
Here are the steps to make the most out of it at this point (at least at the
|
|
|
|
time of writing, I'll try to keep this little tutorial up to date)!
|
|
|
|
|
|
|
|
1. Create an SSH key if you don't have one. Most likely you do, for pushing to
|
|
|
|
your existing repos hosted on your favorite project hosting platform.
|
|
|
|
2. Browse to the instance I linked above, and click *Sign up*. Choose a
|
|
|
|
username and a password. Email address is currently optional on this
|
|
|
|
instance, but it's going to be required soon and used for things like
|
|
|
|
password reset, so please do provide a real email address.
|
|
|
|
3. Log in. Once you log in, the front page will change, and among other things,
|
|
|
|
it will link to your SSH keys. Go there to add your SSH key. In the
|
|
|
|
algorithm box you paste the first part e.g. `ssh-rsa`, and in the second box
|
|
|
|
you paste the long scary part that follows it.
|
|
|
|
4. The front page also links you to repos and projects, you can create a
|
|
|
|
project and open tickets. You can also create a Git or Darcs repo, and
|
|
|
|
optionally associate it with a project. A project can have any number of
|
|
|
|
repos asociated with it, sharing the same ticket tracker. Creating a project
|
|
|
|
or repo may ask you to create a project or repo role; the front page has
|
|
|
|
links for creating these
|
|
|
|
5. You can browse all the projects and repos hosted on the instance.
|
|
|
|
6. Add the following to your `~/.ssh/config` file, or create it if doesn't
|
2018-10-25 22:28:06 +02:00
|
|
|
exist. To be honest I'm not sure it's still required, and haven't tested
|
|
|
|
yet. If you find that this step is unnecessary and everything works without
|
|
|
|
it, let me know :)
|
2018-03-31 16:39:12 +02:00
|
|
|
|
2022-06-27 22:21:05 +02:00
|
|
|
Host vervis.peers.community
|
2023-05-01 11:01:30 +02:00
|
|
|
KexAlgorithms +diffie-hellman-group1-sha1
|
2018-03-31 16:39:12 +02:00
|
|
|
ControlMaster no
|
|
|
|
ForwardAgent no
|
|
|
|
ForwardX11 no
|
2023-05-01 11:01:30 +02:00
|
|
|
Ciphers +aes256-cbc
|
|
|
|
MACs +hmac-sha1
|
|
|
|
PubkeyAcceptedKeyTypes +ssh-rsa
|
|
|
|
HostKeyAlgorithms +ssh-rsa
|
2018-03-31 16:39:12 +02:00
|
|
|
|
|
|
|
Once you create a repository, it is possible that initially, trying to look at
|
|
|
|
it will give you 404. It should be okay though once you push some commit into
|
|
|
|
it.
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
The examples below use Git, but it's exactly the same for Darcs. They are
|
2018-03-31 16:39:12 +02:00
|
|
|
equally supported.
|
|
|
|
|
|
|
|
Cloning repositories works over (unauthenticated) HTTPS and (authenticated)
|
|
|
|
SSH.
|
|
|
|
|
|
|
|
**HTTPS clone:**
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
$ git clone https://vervis.peers.community/repos/rjQ3E vervis
|
2018-03-31 16:39:12 +02:00
|
|
|
|
|
|
|
**SSH clone and push:**
|
|
|
|
|
|
|
|
If your system username and Vervis username are identical:
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
$ git clone vervis.peers.community:rjQ3E vervis
|
2018-03-31 16:39:12 +02:00
|
|
|
|
|
|
|
If usernames are different:
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
$ git clone luke@vervis.peers.community:rjQ3E vervis
|
2018-03-31 16:39:12 +02:00
|
|
|
|
|
|
|
A few more little notes:
|
|
|
|
|
|
|
|
- No password reset, it's already implemented but not deployed yet at the time
|
|
|
|
of writing these words
|
|
|
|
- A few more features are available, such as ticket workflows and ticket claim
|
|
|
|
requests, but they are less important so I'm not going into them at this
|
|
|
|
point
|
|
|
|
- Deletion of users, projects and repos may not work
|
|
|
|
- Login session should last for 2 hours after last access
|
|
|
|
- The instance I'm running serves only HTTPS, no plain HTTP
|
|
|
|
- There's no HTTPS push
|
|
|
|
- Merge requests not implemented yet
|
|
|
|
- I started working on federation using ActivityPub, I'll update here when it's
|
|
|
|
ready for trying against ActivityPub clients and servers
|
|
|
|
- Feedback is very very very very very welcome and needed!!! :)
|
|
|
|
|
2024-07-04 18:45:10 +02:00
|
|
|
## Federation & API
|
2019-05-05 13:15:51 +02:00
|
|
|
|
2024-07-04 18:45:10 +02:00
|
|
|
See `FEDERATION.md` & `API.md`.
|
2019-05-05 13:15:51 +02:00
|
|
|
|
2016-03-05 04:54:37 +01:00
|
|
|
## Installation
|
|
|
|
|
2018-11-01 10:46:18 +01:00
|
|
|
See `INSTALL.md`.
|
2016-03-05 04:54:37 +01:00
|
|
|
|
|
|
|
## Using
|
|
|
|
|
|
|
|
See the .cabal file for more info and link to project website and version
|
2016-01-28 15:15:54 +01:00
|
|
|
control.
|
|
|
|
|
2016-03-05 04:54:37 +01:00
|
|
|
The official download location is the Darcs repository:
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
<https://vervis.peers.community/repos/rjQ3E>
|
2016-03-05 04:54:37 +01:00
|
|
|
|
2018-03-31 16:39:12 +02:00
|
|
|
There is a backup repo, not always up to date though, at:
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
<https://codeberg.org/forgefed/vervis>
|
2016-03-05 04:54:37 +01:00
|
|
|
|
|
|
|
See the file `INSTALL.md` for a detailed usage and deployment guide. The file
|
|
|
|
`ChangeLog` explains how to see the history log of the changes done in the
|
|
|
|
code. `NEWS.md` provides a friendly overview of the changes for each release.
|
|
|
|
|
2022-09-01 11:13:16 +02:00
|
|
|
## Finding your way in the codebase
|
|
|
|
|
2022-09-24 11:12:45 +02:00
|
|
|
Folders:
|
|
|
|
|
2022-09-01 11:13:16 +02:00
|
|
|
- `app`:
|
|
|
|
*main* functions of the web app, for regular build and for development modes
|
|
|
|
- `config`:
|
|
|
|
Settings the app reads when it launches, some defined by a human and some
|
|
|
|
auto-generated
|
2023-05-25 12:54:03 +02:00
|
|
|
- `.git`:
|
|
|
|
Internal version control data of this repo
|
2022-09-01 11:13:16 +02:00
|
|
|
- `embed`:
|
|
|
|
Files embedded into the app source code at build time (using TH)
|
|
|
|
- `hook-darcs` & `hook-git`:
|
|
|
|
*main* functions for VCS hook programs to be inserted into every repo hosted
|
|
|
|
by the app
|
|
|
|
- `migrations`:
|
|
|
|
Helper files for DB migrations: New entities added & model files for
|
|
|
|
migrations involving data manipulation
|
|
|
|
- `src`:
|
|
|
|
Web app Haskell source code, built as a library whose modules are used by the
|
|
|
|
various executables
|
|
|
|
- `static`:
|
|
|
|
Static files (such as CSS and fonts) served by the web app (no such files at
|
|
|
|
the moment)
|
|
|
|
- `templates`:
|
|
|
|
UI page and widget templates (`.hamlet` for HTML, `.cassius` for CSS)
|
|
|
|
- `test`:
|
|
|
|
No tests have been written yet
|
|
|
|
- `th`:
|
|
|
|
Domain-specific language snippets, from which code is generated using TH
|
|
|
|
|
2022-09-24 11:12:45 +02:00
|
|
|
Files:
|
|
|
|
|
2023-05-25 12:54:03 +02:00
|
|
|
- `.gitignore`
|
2022-09-24 11:12:45 +02:00
|
|
|
- `th/routes`
|
|
|
|
- `th/models`
|
|
|
|
- `update-deps.sh`
|
|
|
|
- `bindist.sh`
|
|
|
|
|
|
|
|
Haskell modules in `src`:
|
|
|
|
|
|
|
|
- Non-`Vervis` modules:
|
|
|
|
- Modules ending with `Local`:
|
|
|
|
- The rest:
|
|
|
|
- `Vervis.Data`
|
|
|
|
- `Vervis.Persist`
|
|
|
|
- `Vervis.Fetch`
|
2024-05-16 14:19:01 +02:00
|
|
|
- `Vervis.Serve`
|
2022-09-24 11:12:45 +02:00
|
|
|
- `Vervis.Query`
|
|
|
|
- `Vervis.Web`
|
|
|
|
- Primary web app support modules:
|
|
|
|
- `Vervis.Foundation`
|
|
|
|
- `Vervis.Application`
|
|
|
|
- `Vervis.Settings`
|
|
|
|
- `Vervis.Model`
|
|
|
|
- `Vervis.Migration`
|
|
|
|
- Primary web app logic modules:
|
2024-05-16 14:19:01 +02:00
|
|
|
- `Vervis.Actor`
|
2022-09-24 11:12:45 +02:00
|
|
|
- `Vervis.Handler`
|
|
|
|
- `Vervis.Client`
|
|
|
|
- `Vervis.Ssh`
|
|
|
|
|
2016-03-05 04:54:37 +01:00
|
|
|
## Reporting Bugs and Suggesting Features
|
|
|
|
|
|
|
|
If you found a bug, or you have an idea, a feature request or a wishlist item,
|
2018-05-18 21:30:35 +02:00
|
|
|
open a ticket for it! Even if you're going to implement something or try to
|
2016-03-05 04:54:37 +01:00
|
|
|
solve it.
|
2016-01-28 15:15:54 +01:00
|
|
|
|
2019-08-05 15:33:07 +02:00
|
|
|
If you're going to implement some feature or fix some bug you found, **start by
|
2022-06-27 22:21:05 +02:00
|
|
|
opening a ticket**
|
2024-08-07 12:24:01 +02:00
|
|
|
[here](https://codeberg.org/ForgeFed/Vervis/issues) so that other
|
2022-06-27 22:21:05 +02:00
|
|
|
people will know which features are being developed and who does what.
|
2022-09-27 06:49:17 +02:00
|
|
|
|
|
|
|
UPDATE: The ticket tracker is temporarily unavailable. You can instead contact
|
2023-05-25 12:54:03 +02:00
|
|
|
[Pere](https://perelev.site) to report issues and to coordinate work.
|
2024-04-11 15:17:54 +02:00
|
|
|
|
|
|
|
## Funding
|
|
|
|
|
|
|
|
This project is funded through the
|
|
|
|
[NGI Zero Entrust Fund](https://nlnet.nl/entrust), a fund established by
|
|
|
|
[NLnet](https://nlnet.nl) with financial support from the European Commission's
|
|
|
|
[Next Generation Internet](https://ngi.eu) program. Learn more at the
|
|
|
|
[NLnet project page](https://nlnet.nl/project/ForgeFed-RPC).
|
|
|
|
|
|
|
|
[<img src="https://nlnet.nl/logo/banner.png" alt="NLnet foundation logo" width="20%" />](https://nlnet.nl)
|
|
|
|
[<img src="https://nlnet.nl/image/logos/NGI0Entrust_tag.svg" alt="NGI Zero Entrust Logo" width="20%" />](https://nlnet.nl/entrust)
|