mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
1cb8dbcfa4
added MacOs install script Removed Makefile, since we now use a bash script. This removes the dependency on make. Removed Brewfile, since we now use a bash script
57 lines
1.8 KiB
Bash
Executable File
57 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
BLUE="\e[34m"
|
|
RED="\e[31m"
|
|
ENDCOLOR="\e[0m"
|
|
|
|
# Note: This script does not install applications which are installed by the package manager. There are too many package managers out there.
|
|
|
|
# Install rust on Linux
|
|
echo -e "${BLUE}AppFlowy : The Rust programming language is required to compile AppFlowy.${ENDCOLOR}"
|
|
echo -e "${BLUE}AppFlowy : We can install it now if you don't already have it on your system.${ENDCOLOR}"
|
|
|
|
read -p "${BLUE}AppFlowy : Do you want to install Rust? [y/N]${ENDCOLOR} " installrust
|
|
|
|
if [ ${installrust^^} == "Y" ]; then
|
|
echo -e "${BLUE}AppFlowy : Installing Rust.${ENDCOLOR}"
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
source $HOME/.cargo/env
|
|
rustup toolchain install stable
|
|
rustup default stable
|
|
else
|
|
echo -e "${BLUE}AppFlowy : Skipping Rust installation.${ENDCOLOR}"
|
|
fi
|
|
|
|
# Enable the flutter stable channel
|
|
echo -e "${BLUE}AppFlowy : Checking Flutter installation.${ENDCOLOR}"
|
|
flutter channel stable
|
|
|
|
# Enable linux desktop
|
|
flutter config --enable-linux-desktop
|
|
|
|
# Fix any problems reported by flutter doctor
|
|
flutter doctor
|
|
|
|
# Add the githooks directory to your git configuration
|
|
echo -e "${BLUE}AppFlowy : Setting up githooks.${ENDCOLOR}"
|
|
git config core.hooksPath .githooks
|
|
|
|
# Change to the frontend directory
|
|
cd frontend
|
|
|
|
# Install cargo make
|
|
echo -e "${BLUE}AppFlowy : Installing cargo-make.${ENDCOLOR}"
|
|
cargo install --force cargo-make
|
|
|
|
# Install duckscript
|
|
echo -e "${BLUE}AppFlowy : Installing duckscript.${ENDCOLOR}"
|
|
cargo install --force duckscript_cli
|
|
|
|
# Install CommitLint
|
|
echo -e "${BLUE}AppFlowy : Installing CommitLint.${ENDCOLOR}"
|
|
npm install @commitlint/cli @commitlint/config-conventional --save-dev
|
|
|
|
# Check prerequisites
|
|
echo -e "${BLUE}AppFlowy : Checking prerequisites.${ENDCOLOR}"
|
|
cargo make flowy_dev
|