Artwork is a project organization tool for scheduling projects with events, tasks, and responsibilities. It helps teams keep track of all essential project components.
- Make sure you ran the latest database migrations via
php artisan migratebefore updating. In this release we consolidated the migration to a new base dump. Since some migrations were moving and/or transforming data make sure you are up to date with the latest migrations from 1.5.1
- Soketi has been removed as websocket service. We switched to Laravel Reverb. For an example configuration please take a look at dockerfiles/artwork-php.84.vhost.conf
- We added wkhtmltopdf as pdf rendering engine. The binaries must be available on the server under
/usr/bin/wkhtmltopdfplease take a look at https://wkhtmltopdf.org/ for more information and retrieve the binaries
Artwork can be installed standalone on a dedicated server or as a multi-container app via Docker, we recommend to use the Docker-approach.
This Docker setup is for demo purposes only. To get a productive-ready installation you need to fill in your credentials according to your server circumstances in the .env-file especially take care to have the emailing-service setup correctly and that the settings fit to your firewall settings of your setup. When doing this it can be needed, that you also adjust the dockerfiles to your setup.
-
Copy
.env.exampleto.envand adjust the values -
Build and start:
docker compose build artwork docker compose up -d
-
Generate an app key:
docker compose exec artwork php artisan key:generate --showCopy the output into the
APP_KEYvariable in your.envfile. It should look likeAPP_KEY=base64:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=please do NOT use the key from the example.If you receive an error regarding missing files wait a few minutes for the application to load the missing dependencies and set everything up. This may take up to 10 minutes depending on your setup.
-
Restart to load the new key:
docker compose up -d
-
The frontend should be available at http://localhost
Artwork supports standalone installation on any Linux server. Since we do not know your specific setup we cannot provide a sophisticated installation guide for any linux distribution.
- PHP 8.4 with extensions: cli, fpm, mysql, gd, imagick, curl, imap, mbstring, xml, zip, bcmath, soap, intl, readline, ldap, redis, swoole, igbinary, msgpack, memcached, pcov
- wkhtmltopdf 0.12.6 (patched Qt)
- MariaDB 11
- Redis
- Node.js 22+
- Meilisearch 1.22
- Artwork requires Websockets to be accessible. We use Laravel Reverb as host. Which need to be accessible from the system and frontend-
- Run composer install and npm install after every update
- Rebuild the the frontend via
npm run buildafter every update - You should have a minutely cronjob running to run the
php artisan schedule:runcommand. - You need to make sure the queue is running via
php artisan queue:work - After every update remember to run database migrations and the
php artisan artwork:updatecommand.
Example configurations for the nginx, redis and php services can be found in the dockerfiles folder.
- Copy
.env.exampleto.envand adjust the values to match your environment - Install dependencies:
php composer.phar install npm install
- Generate an app key:
Copy the output into the
php artisan key:generate --show
APP_KEYvariable in your.envfile. - Set
APP_URLin.envto your domain (includinghttp://orhttps://) - Run the setup command:
php artisan artwork:update
Artwork relies on emails for many features like account verification and password resets.
To get emails working, fill in the following block in your .env file with your mail server settings:
MAIL_HOST=
MAIL_PORT=
MAIL_MAILER=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
We do not ship certificates. Configure SSL as you would for any nginx installation: https://nginx.org/en/docs/http/configuring_https_servers.html
Dependencies (Composer & NPM) are installed automatically on container start.
If you seed the database with dummy data, you can log in with:
| Account | Password | |
|---|---|---|
| Admin (all permissions) | anna.musterfrau@artwork.software | TestPass1234!$ |
| User (limited permissions) | lisa.musterfrau@artwork.software | TestPass1234!$ |
main— Stable/production branchstaging— Pre-release testing (Beta)dev— Development and feature integration
- Log in to Artwork
- Navigate to Tool Settings → Interfaces
- Click "Create API Key"
- Enter a name and optionally set an expiration date
- Copy the generated key and store it securely
If you have questions, feel free to open an issue.