mirror of
https://github.com/zeropingheroes/lancache-autofill
synced 2024-11-10 02:14:12 +00:00
Adding syntax/steam-api
This commit is contained in:
parent
1a8ceb1ad5
commit
dd0e2b7835
4 changed files with 15 additions and 2 deletions
|
@ -1,2 +1,3 @@
|
|||
DOWNLOADS_DIRECTORY="/tmp/lancache-autofill"
|
||||
STEAMCMD_PATH="~/steam/steamcmd.sh"
|
||||
STEAMCMD_PATH="~/steam/steamcmd.sh"
|
||||
STEAM_API_KEY="YOUR-API-KEY"
|
||||
|
|
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
@ -19,7 +19,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
|||
|
||||
config.vm.provision "apt",
|
||||
type: "shell",
|
||||
inline: "apt update && apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.0-cli php7.0-mbstring php7.0-sqlite composer expect zip unzip"
|
||||
inline: "apt update && apt install -y lib32gcc1 lib32stdc++6 lib32tinfo5 lib32ncurses5 php7.0-cli php7.0-mbstring php7.0-sqlite php7.0-bcmath composer expect zip unzip"
|
||||
|
||||
config.vm.provision "project",
|
||||
type: "shell",
|
||||
|
|
|
@ -119,6 +119,7 @@ return [
|
|||
*/
|
||||
Illuminate\Cache\CacheServiceProvider::class,
|
||||
Illuminate\Filesystem\FilesystemServiceProvider::class,
|
||||
Syntax\SteamApi\SteamApiServiceProvider::class,
|
||||
|
||||
],
|
||||
/*
|
||||
|
@ -132,5 +133,6 @@ return [
|
|||
|
|
||||
*/
|
||||
'aliases' => [
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
],
|
||||
];
|
10
config/steam-api.php
Normal file
10
config/steam-api.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
/**
|
||||
* You can get a steam API key from http://steamcommunity.com/dev/apikey
|
||||
* Once you get your key, add it here.
|
||||
*/
|
||||
'steamApiKey' => env('STEAM_API_KEY', 'YOUR-API-KEY')
|
||||
);
|
Loading…
Reference in a new issue