-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Meilisearch feature, thanks to CorruptedCyborg for the gist
- Loading branch information
1 parent
e004869
commit 646f19e
Showing
1 changed file
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
if [ -f ~/.homestead-features/wsl_user_name ]; then | ||
WSL_USER_NAME="$(cat ~/.homestead-features/wsl_user_name)" | ||
WSL_USER_GROUP="$(cat ~/.homestead-features/wsl_user_group)" | ||
else | ||
WSL_USER_NAME=vagrant | ||
WSL_USER_GROUP=vagrant | ||
fi | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
if [ -f /home/$WSL_USER_NAME/.homestead-features/meilisearch ] | ||
then | ||
echo "meilisearch already installed." | ||
exit 0 | ||
fi | ||
|
||
touch /home/$WSL_USER_NAME/.homestead-features/meilisearch | ||
chown -Rf $WSL_USER_NAME:$WSL_USER_GROUP /home/$WSL_USER_NAME/.homestead-features | ||
|
||
# add the sources for meilisearch | ||
echo "deb [trusted=yes] https://apt.fury.io/meilisearch/ /" > /etc/apt/sources.list.d/fury.list | ||
|
||
# update apt and install meilisearch | ||
apt-get update && apt-get install meilisearch-http | ||
|
||
# Create a service file | ||
cat > /etc/systemd/system/meilisearch.service << EOF | ||
[Unit] | ||
Description=MeiliSearch | ||
After=systemd-user-sessions.service | ||
[Service] | ||
Type=simple | ||
ExecStart=meilisearch | ||
[Install] | ||
WantedBy=default.target | ||
EOF | ||
|
||
# Set the service meilisearch | ||
systemctl daemon-reload | ||
systemctl enable meilisearch | ||
|
||
# Start the meilisearch service | ||
systemctl start meilisearch |