https://github.com/freifunk/linksink
https://github.com/freifunk/linksink
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/freifunk/linksink
- Owner: freifunk
- Created: 2014-08-13T14:49:00.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2025-09-29T12:37:52.000Z (9 months ago)
- Last Synced: 2025-09-29T13:25:01.279Z (9 months ago)
- Language: PHP
- Size: 12.6 MB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# linksink
## Requirements
- PHP 8.0 or higher
- Composer
- SQLite (or another database supported by Doctrine)
## Installation
1. Clone the repository:
```sh
git clone https://github.com/freifunk/linksink.git
cd linksink
```
2. Install PHP dependencies:
```sh
composer install
```
## Initializing the Database
1. Create the database schema:
```sh
php bin/console doctrine:schema:create
```
## Running Tests
1. Run PHPUnit tests:
```sh
./vendor/bin/phpunit
```
## Additional Commands
- To clear the cache:
```sh
php bin/console cache:clear
```
- To run the development server:
```sh
php bin/console server:run
```