# ferdi-server Unofficial Franz server replacement for use with the Ferdi Client. ## Looking for a smaller alternative? [ferdi-slim-server](https://github.com/vantezzen/ferdi-slim-server) is a slim alternative to this project. Opposed to ferdi-server, ferdi-slim-server is only a wrapper around the Franz API that allows you to add custom recipes while still using the original Franz API. ## Why use a custom ferdi-server? A custom ferdi-server allows you to experience the full potential of the Ferdi client. It allows you to use all Premium features (e.g. Workspaces and custom URL recipes) and [adding your own recipes](#creating-and-using-custom-recipes). ## Demo You can try a demo of ferdi-server by settings your server to . ## Features - [x] User registration and login - [x] Service creation, download, listing and removing - [x] Workspace support - [x] Functioning service store - [x] User dashboard - [ ] Password recovery - [ ] Export/import data to other ferdi-servers - [ ] Recipe update ## Setup ### with Docker The easiest way to set up ferdi-server on your server is with Docker. The Docker image can be run as is, with the default sqlite database or you can modifying your ENV variables to use an external database (e.g. MySQL, MariaDB, Postgres, etc). After setting up the docker container we recommend you to set up an NGINX reverse proxy to access ferdi-server outside of your home network and protect it with an SSL certificate. 1. Pull the Docker image ```sh docker pull getferdi/ferdi-server ``` 2. Create a new Docker container with your desired configuration ```sh docker create \ --name=ferdi-server \ -e NODE_ENV=development \ -e DB_CONNECTION= \ -e DB_HOST= \ -e DB_PORT= \ -e DB_USER= \ -e DB_PASSWORD= \ -e DB_DATABASE= \ -e IS_CREATION_ENABLED=true \ -e CONNECT_WITH_FRANZ=true \ -p :80 \ -v :/config \ -v :/usr/src/app/database \ -v :/usr/src/app/recipes \ --restart unless-stopped \ getferdi/ferdi-server ``` Alternatively, you can also use docker-compose v2 schemas ```sh --- version: "2" services: ferdi-server: image: getferdi/ferdi-server container_name: ferdi-server environment: - NODE_ENV=development - DB_CONNECTION= - DB_HOST= - DB_PORT= - DB_USER= - DB_PASSWORD= - DB_DATABASE= - IS_CREATION_ENABLED=true/false - CONNECT_WITH_FRANZ=true/flase volumes: - :/config - :/usr/src/app/database - :/usr/src/app/recipes ports: - :80 restart: unless-stopped ``` 3. Optionally, you can now [set up Nginx as a reverse proxy](https://www.digitalocean.com/community/tutorials/how-to-set-up-a-node-js-application-for-production-on-ubuntu-16-04#set-up-nginx-as-a-reverse-proxy-server). For more information on configuring the Docker image, visit the Docker image repository at . ### Manual setup 1. Clone this repository 2. Install the [AdonisJS CLI](https://adonisjs.com/) 3. Copy `.env.example` to `.env` and edit the [configuration](#configuration) to your needs 4. Run `npm install` to install local dependencies 5. Run the database migrations with ```js adonis migration:run ``` 6. Start the server with ```js adonis serve --dev ``` ## Configuration franz-server's configuration is saved inside the `.env` file. Besides AdonisJS's settings, ferdi-server has the following custom settings: - `IS_CREATION_ENABLED` (`true` or `false`, default: `true`): Whether to enable the [creation of custom recipes](#creating-and-using-custom-recipes) - `CONNECT_WITH_FRANZ` (`true` or `false`, default: `true`): Whether to enable connections to the Franz server. By enabling this option, ferdi-server can: - Show the full Franz recipe library instead of only custom recipes - Import Franz accounts ## Importing your Franz account ferdi-server allows you to import your full Franz account, including all its settings. To import your Franz account, open `http://[YOUR FERDI-SERVER]/import` in your browser and login using your Franz account details. ferdi-server will create a new user with the same credentials and copy your Franz settings, services and workspaces. ## Creating and using custom recipes ferdi-server allows to extends the Franz recipe catalogue with custom Ferdi recipes. For documentation on how to create a recipe, please visit [the official guide by Franz](https://github.com/meetfranz/plugins/blob/master/docs/integration.md). To add your recipe to ferdi-server, open `http://[YOUR FERDI-SERVER]/new` in your browser. You can now define the following settings: - `Author`: Author who created the recipe - `Name`: Name for your new service. Can contain spaces and unicode characters - `Service ID`: Unique ID for this recipe. Does not contain spaces or special characters (e.g. `google-drive`) - `Link to PNG/SVG image`: Direct link to a 1024x1024 PNG image and SVG that is used as a logo inside the store. Please use jsDelivr when using a file uploaded to GitHub as raw.githubusercontent files won't load - `Recipe files`: Recipe files that you created using the [Franz recipe creation guide](https://github.com/meetfranz/plugins/blob/master/docs/integration.md). Please do *not* package your files beforehand - upload the raw files (you can drag and drop multiple files). ferdi-server will automatically package and store the recipe in the right format. Please also do not drag and drop or select the whole folder, select the individual files. ### Listing custom recipes Inside Ferdi, searching for `ferdi:custom` will list all your custom recipes. ## License ferdi-server is licensed under the MIT License