├── Dockerfile ├── JupyterNotebooks └── ipynb.md ├── README.md ├── app.json ├── donate.developeranaz.txt ├── entrypoint.sh ├── heroku.yml ├── jupyter.py ├── jupyter_notebook_config.json ├── logo ├── Jupyter_logo.svg.png ├── jupyter-example-image-1.jpg ├── jupyter-example-image-2.jpg ├── jupyter-example-image-3.jpg ├── jupyter-example-image-4.jpg ├── jupyter-example-image-5.jpg ├── jupyter-example-image-6.jpg ├── jupyter-example-image-7.jpg └── logo └── ports.conf /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM kalilinux/kali-rolling 2 | EXPOSE 8080 3 | 4 | RUN apt update -y 5 | RUN apt install curl -y 6 | RUN apt install unrar -y 7 | RUN apt install wget -y 8 | RUN apt install jupyter -y 9 | RUN apt install unzip -y 10 | # Add other pakages before deployment 11 | # RUN apt install -y 12 | RUN mkdir /JupyterNotebooks 13 | COPY JupyterNotebooks /JupyterNotebooks 14 | COPY jupyter.py /conf/jupyter.py 15 | COPY jupyter_notebook_config.json /root/.jupyter/jupyter_notebook_config.json 16 | 17 | COPY entrypoint.sh /entrypoint.sh 18 | RUN chmod +x /entrypoint.sh 19 | CMD /entrypoint.sh 20 | -------------------------------------------------------------------------------- /JupyterNotebooks/ipynb.md: -------------------------------------------------------------------------------- 1 | copy your ipynb /notebook files here. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # heroku-jupyter-BETA 2 | 3 | * password disabled 4 | * One Click rapid deployment 5 | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https://github.com/developeranaz/heroku-jupyter-BETA) 6 | 7 | No time to Update Readme - Please post issues 8 | 9 | * Dont Forget to star my repository 10 | * Follow me 11 | 12 | 13 | ## SCREENSHOTS 14 | ![Deploy](https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/main/logo/jupyter-example-image-2.jpg) 15 | 16 | ![Deploy](https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/main/logo/jupyter-example-image-1.jpg) 17 | 18 | ![Deploy](https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/main/logo/jupyter-example-image-3.jpg) 19 | 20 | ![Deploy](https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/main/logo/jupyter-example-image-4.jpg) 21 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Jupyter-Notebook-Server-Heroku", 3 | "description": "A jupyter notebook server via HEROKU web without Password", 4 | "logo": "https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/main/logo/Jupyter_logo.svg.png", 5 | "keywords": ["jupyter", "notebook", "heroku", "web", "herokuweb", "jupyternotebook", "nopassword", "password-disabled", "no-password", "oneclickdeploy", "deploy-to-heroku", "docker"], 6 | 7 | "website": "", 8 | "repository": "", 9 | "stack": "container" 10 | } 11 | -------------------------------------------------------------------------------- /donate.developeranaz.txt: -------------------------------------------------------------------------------- 1 | Donate me BTC : 1J48LksQNiASuj48nwYATXdFzQSwdrnx7c 2 | 3 | 4 | 5 | A repo developed by developeranaz based on opensource softwares 6 | 7 | Orgin Repository : https://github.com/developeranaz/Mega.nz-Rclone-Index-Heroku 8 | Follow me on Instagram : https://www.instagram.com/t_h_e_anas 9 | Join on telegram community : N/A 10 | -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jupyter notebook --ip=0.0.0.0 --port=$PORT --NotebookApp.token='' --NotebookApp.password='' 4 | -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- 1 | build: 2 | docker: 3 | web: Dockerfile 4 | -------------------------------------------------------------------------------- /jupyter.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | c = get_config() 4 | 5 | # Kernel config 6 | c.IPKernelApp.pylab = 'inline' # if you want plotting support always in your notebook 7 | 8 | # Notebook config 9 | c.NotebookApp.notebook_dir = 'nbs' 10 | c.NotebookApp.allow_origin = u'mast479.herokuapp.com' # put your public IP Address here 11 | c.NotebookApp.ip = '*' 12 | c.NotebookApp.allow_remote_access = True 13 | c.NotebookApp.open_browser = False 14 | 15 | # ipython -c "from notebook.auth import passwd; passwd()" 16 | c.NotebookApp.password = u'' 17 | c.NotebookApp.token = '' 18 | c.NotebookApp.port = int(os.environ.get("PORT", 8888)) 19 | c.NotebookApp.allow_root = True 20 | c.NotebookApp.allow_password_change = True 21 | c.ConfigurableHTTPProxy.command = ['configurable-http-proxy', '--redirect-port', '80'] 22 | -------------------------------------------------------------------------------- /jupyter_notebook_config.json: -------------------------------------------------------------------------------- 1 | { 2 | "NotebookApp": { 3 | "password": "argon2:$argon2id$v=19$m=10240,t=10,p=8$JIwVdgjw8lgj+l3+y1QdYA$WRYAlwEEJoIAZ1qmZbgaWQ" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /logo/Jupyter_logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/Jupyter_logo.svg.png -------------------------------------------------------------------------------- /logo/jupyter-example-image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-1.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-2.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-3.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-4.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-5.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-6.jpg -------------------------------------------------------------------------------- /logo/jupyter-example-image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developeranaz/Jupyter-Notebook-Server-Heroku/267015dd77471fd841825c810da47c1973a5e265/logo/jupyter-example-image-7.jpg -------------------------------------------------------------------------------- /logo/logo: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ports.conf: -------------------------------------------------------------------------------- 1 | Listen ${PORT} 2 | --------------------------------------------------------------------------------