This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
forked from TeamUltroid/Ultroid
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: AndrewLaneX <[email protected]> Co-authored-by: Aditya <[email protected]> Co-authored-by: Danish <[email protected]> Co-authored-by: buddhhu <[email protected]> Co-authored-by: sppidy <[email protected]> Co-authored-by: Arnab Paryali <[email protected]> Co-authored-by: divkix <[email protected]> Co-authored-by: hellboi_atul <[email protected]> Co-authored-by: Programming Error <[email protected]> Co-authored-by: New-dev0 <[email protected]>
- Loading branch information
1 parent
97146a9
commit 4e8b054
Showing
111 changed files
with
6,988 additions
and
991 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
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 |
---|---|---|
|
@@ -4,7 +4,17 @@ | |
# PLease read the GNU Affero General Public License in <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>. | ||
|
||
FROM ultroidteam/ultroid:0.0.3 | ||
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \ | ||
dpkg -i ./google-chrome-stable_current_amd64.deb; apt -fqqy install && \ | ||
rm ./google-chrome-stable_current_amd64.deb | ||
RUN wget -O chromedriver.zip http://chromedriver.storage.googleapis.com/$(curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip && \ | ||
unzip chromedriver.zip chromedriver -d /usr/bin/ && \ | ||
rm chromedriver.zip | ||
RUN curl --silent --location https://deb.nodesource.com/setup_15.x | bash - | ||
RUN apt-get install -y nodejs sudo | ||
RUN git clone https://github.com/TeamUltroid/Ultroid.git /root/TeamUltroid/ | ||
WORKDIR /root/TeamUltroid/ | ||
RUN git clone https://github.com/1Danish-00/glitch_me.git && pip install -e ./glitch_me | ||
RUN pip install -r requirements.txt | ||
CMD ["bash", "resources/startup/startup.sh"] | ||
RUN npm install -g [email protected] && npm install | ||
RUN npm run build |
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,24 @@ | ||
test: | ||
@pre-commit run --all-files | ||
|
||
install: | ||
@pip3 install --upgrade pip setuptools wheel | ||
@pip3 install --upgrade -r requirements.txt | ||
|
||
|
||
dev-install: | ||
@pip3 install --upgrade pip setuptools wheel | ||
@pip3 install --upgrade -r requirements-dev.txt | ||
@sleep 5 | ||
@pre-commit | ||
@pre-commit install | ||
|
||
update: | ||
@git pull | ||
@pip3 install --upgrade pip setuptools wheel | ||
@pip3 install --upgrade -r requirements.txt | ||
|
||
ci: | ||
@pip3 install --upgrade pip setuptools wheel | ||
@pip3 install --upgrade -r requirements-dev.txt | ||
@pre-commit |
Oops, something went wrong.