mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-02-06 03:21:10 -05:00
* Experiment Development Containers / GitHub Codespaces https://containers.dev/ https://github.com/features/codespaces * Fix tests
18 lines
323 B
Bash
Executable File
18 lines
323 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ln -s "$(pwd)" /var/www/FreshRSS
|
|
|
|
cp ./Docker/*.Apache.conf /etc/apache2/conf.d/
|
|
|
|
cat <<EOT >./constants.local.php
|
|
<?php
|
|
define('DATA_PATH', '/home/developer/freshrss-data');
|
|
EOT
|
|
|
|
./Docker/entrypoint.sh
|
|
|
|
chown -R developer:www-data /home/developer/freshrss-data
|
|
chmod -R g+w /home/developer/freshrss-data
|
|
|
|
httpd
|