Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
updated README and used sudo (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
mieasy committed Jun 9, 2019
1 parent 3e2d454 commit f07c12e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,20 @@ At the end you have to create an account. After that you can become the stronges
No matter what skills you have... ALL ARE HELPFUL!
From design to development. For more information talk to us on discord or write us an email.

### Development quickstart
As we are a small project every help is appreciated and we need you.
To allow you to help easily we created a quickstart script, that
downloads all microservices and automatically installs all their dependencies.
You can run the script by running
```
curl -sSL https://github.com/cryptic-game/cryptic/blob/master/quickstart.sh | bash
```
in your favorite command line.
It will also try to install system wide dependencies the setup script needs. At the moment only
Debian based systems (or more accurately systems that use the Advanced Packaging Tool (apt))
are supported. If you would like to implement the same thing for Arch Linux for example,
your help is very much appreciated.

## Organisation

Behind cryptic exists a not profit-oriented team.
Expand Down
6 changes: 3 additions & 3 deletions quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ if [ -f "/etc/arch-release" ]; then
echo "::: Arch linux detected but installing the basic dependencies is not yet implemented"
elif [ -f "/etc/debian_version" ]; then
echo "::: Debian based linux detected, updating system"
apt-get update
sudo apt-get update
echo "::: Installing basic programs"
apt install -y git curl python3.7 python3-pip
sudo apt install -y git curl python3.7 python3-pip
echo "::: Installing pipenv"
python3.7 -m pip install pipenv
sudo python3.7 -m pip install pipenv
else
echo "::: Unknown operating system, assuming that all necessary packages are installed..."
fi
Expand Down

0 comments on commit f07c12e

Please sign in to comment.