-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'snipe:develop' into develop
- Loading branch information
Showing
878 changed files
with
31,278 additions
and
6,184 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
# -------------------------------------------- | ||
# REQUIRED: DB SETUP | ||
# -------------------------------------------- | ||
MYSQL_DATABASE=snipeit | ||
MYSQL_USER=snipeit | ||
MYSQL_PASSWORD=changeme1234 | ||
MYSQL_ROOT_PASSWORD=changeme1234 | ||
# -------------------------------------------- | ||
# REQUIRED: BASIC APP SETTINGS | ||
# -------------------------------------------- | ||
APP_ENV=develop | ||
APP_DEBUG=false | ||
# please regenerate the APP_KEY value by calling `docker-compose run --rm snipeit bash` and then `php artisan key:generate --show` and then copy paste the value here | ||
APP_KEY=base64:3ilviXqB9u6DX1NRcyWGJ+sjySF+H18CPDGb3+IVwMQ= | ||
APP_URL=http://localhost:8000 | ||
APP_TIMEZONE='UTC' | ||
APP_LOCALE=en | ||
MAX_RESULTS=500 | ||
|
||
# -------------------------------------------- | ||
# REQUIRED: UPLOADED FILE STORAGE SETTINGS | ||
# -------------------------------------------- | ||
PRIVATE_FILESYSTEM_DISK=local | ||
PUBLIC_FILESYSTEM_DISK=local_public | ||
|
||
# -------------------------------------------- | ||
# REQUIRED: DATABASE SETTINGS | ||
# -------------------------------------------- | ||
DB_CONNECTION=mysql | ||
DB_HOST=mariadb | ||
DB_DATABASE=snipeit | ||
DB_USERNAME=snipeit | ||
DB_PASSWORD=changeme1234 | ||
DB_PREFIX=null | ||
DB_DUMP_PATH='/usr/bin' | ||
DB_CHARSET=utf8mb4 | ||
DB_COLLATION=utf8mb4_unicode_ci | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: SSL DATABASE SETTINGS | ||
# -------------------------------------------- | ||
DB_SSL=false | ||
DB_SSL_IS_PAAS=false | ||
DB_SSL_KEY_PATH=null | ||
DB_SSL_CERT_PATH=null | ||
DB_SSL_CA_PATH=null | ||
DB_SSL_CIPHER=null | ||
DB_SSL_VERIFY_SERVER=null | ||
|
||
# -------------------------------------------- | ||
# REQUIRED: OUTGOING MAIL SERVER SETTINGS | ||
# -------------------------------------------- | ||
MAIL_DRIVER=smtp | ||
MAIL_HOST=mailhog | ||
MAIL_PORT=1025 | ||
MAIL_USERNAME=null | ||
MAIL_PASSWORD=null | ||
MAIL_ENCRYPTION=null | ||
MAIL_FROM_ADDR=you@example.com | ||
MAIL_FROM_NAME='Snipe-IT' | ||
MAIL_REPLYTO_ADDR=you@example.com | ||
MAIL_REPLYTO_NAME='Snipe-IT' | ||
MAIL_AUTO_EMBED_METHOD='attachment' | ||
|
||
# -------------------------------------------- | ||
# REQUIRED: IMAGE LIBRARY | ||
# This should be gd or imagick | ||
# -------------------------------------------- | ||
IMAGE_LIB=gd | ||
|
||
|
||
# -------------------------------------------- | ||
# OPTIONAL: BACKUP SETTINGS | ||
# -------------------------------------------- | ||
MAIL_BACKUP_NOTIFICATION_DRIVER=null | ||
MAIL_BACKUP_NOTIFICATION_ADDRESS=null | ||
BACKUP_ENV=true | ||
|
||
|
||
# -------------------------------------------- | ||
# OPTIONAL: SESSION SETTINGS | ||
# -------------------------------------------- | ||
SESSION_LIFETIME=12000 | ||
EXPIRE_ON_CLOSE=false | ||
ENCRYPT=false | ||
COOKIE_NAME=snipeit_session | ||
COOKIE_DOMAIN=null | ||
SECURE_COOKIES=false | ||
API_TOKEN_EXPIRATION_YEARS=40 | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: SECURITY HEADER SETTINGS | ||
# -------------------------------------------- | ||
APP_TRUSTED_PROXIES=192.168.1.1,10.0.0.1 | ||
ALLOW_IFRAMING=false | ||
REFERRER_POLICY=same-origin | ||
ENABLE_CSP=false | ||
CORS_ALLOWED_ORIGINS=null | ||
ENABLE_HSTS=false | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: CACHE SETTINGS | ||
# -------------------------------------------- | ||
CACHE_DRIVER=file | ||
SESSION_DRIVER=file | ||
QUEUE_DRIVER=sync | ||
CACHE_PREFIX=snipeit | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: REDIS SETTINGS | ||
# -------------------------------------------- | ||
REDIS_HOST=redis | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: MEMCACHED SETTINGS | ||
# -------------------------------------------- | ||
MEMCACHED_HOST=null | ||
MEMCACHED_PORT=null | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: PUBLIC S3 Settings | ||
# -------------------------------------------- | ||
PUBLIC_AWS_SECRET_ACCESS_KEY=null | ||
PUBLIC_AWS_ACCESS_KEY_ID=null | ||
PUBLIC_AWS_DEFAULT_REGION=null | ||
PUBLIC_AWS_BUCKET=null | ||
PUBLIC_AWS_URL=null | ||
PUBLIC_AWS_BUCKET_ROOT=null | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: PRIVATE S3 Settings | ||
# -------------------------------------------- | ||
PRIVATE_AWS_ACCESS_KEY_ID=null | ||
PRIVATE_AWS_SECRET_ACCESS_KEY=null | ||
PRIVATE_AWS_DEFAULT_REGION=null | ||
PRIVATE_AWS_BUCKET=null | ||
PRIVATE_AWS_URL=null | ||
PRIVATE_AWS_BUCKET_ROOT=null | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: AWS Settings | ||
# -------------------------------------------- | ||
AWS_ACCESS_KEY_ID=null | ||
AWS_SECRET_ACCESS_KEY=null | ||
AWS_DEFAULT_REGION=null | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: LOGIN THROTTLING | ||
# -------------------------------------------- | ||
LOGIN_MAX_ATTEMPTS=5 | ||
LOGIN_LOCKOUT_DURATION=60 | ||
RESET_PASSWORD_LINK_EXPIRES=900 | ||
|
||
# -------------------------------------------- | ||
# OPTIONAL: MISC | ||
# -------------------------------------------- | ||
LOG_CHANNEL=stderr | ||
LOG_MAX_DAYS=10 | ||
APP_LOCKED=false | ||
APP_CIPHER=AES-256-CBC | ||
APP_FORCE_TLS=false | ||
GOOGLE_MAPS_API= | ||
LDAP_MEM_LIM=500M | ||
LDAP_TIME_LIM=600 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ jobs: | |
php-version: | ||
- "8.1" | ||
- "8.2" | ||
- "8.3" | ||
|
||
name: PHP ${{ matrix.php-version }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Tests in Postgres | ||
|
||
on: workflow_dispatch | ||
|
||
jobs: | ||
tests: | ||
runs-on: ubuntu-latest | ||
|
||
services: | ||
postgresql: | ||
image: postgres | ||
env: | ||
POSTGRES_DB: snipeit | ||
POSTGRES_USER: snipeit | ||
POSTGRES_PASSWORD: password | ||
ports: | ||
- 5432:5432 | ||
options: --health-cmd=pg_isready --health-interval=10s --health-timeout=5s --health-retries=3 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: | ||
- "8.2" | ||
|
||
name: PHP ${{ matrix.php-version }} | ||
|
||
steps: | ||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
coverage: none | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Get Composer Cache Directory | ||
id: composer-cache | ||
run: | | ||
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-${{ matrix.php-version }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-composer- | ||
- name: Copy .env | ||
run: | | ||
cp -v .env.testing.example .env | ||
cp -v .env.testing.example .env.testing | ||
- name: Install Dependencies | ||
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | ||
|
||
- name: Setup Laravel | ||
env: | ||
DB_CONNECTION: pgsql | ||
DB_DATABASE: snipeit | ||
DB_PORT: ${{ job.services.postgresql.ports[5432] }} | ||
DB_USERNAME: snipeit | ||
DB_PASSWORD: password | ||
run: | | ||
php artisan key:generate | ||
php artisan migrate --force | ||
php artisan passport:install | ||
chmod -R 777 storage bootstrap/cache | ||
- name: Execute tests (Unit and Feature tests) via PHPUnit | ||
env: | ||
DB_CONNECTION: pgsql | ||
DB_DATABASE: snipeit | ||
DB_PORT: ${{ job.services.postgresql.ports[5432] }} | ||
DB_USERNAME: snipeit | ||
DB_PASSWORD: password | ||
run: php artisan test --parallel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.