data-science-stack-cookiecutter
๐ณ๐๐คCookiecutter template to launch an awesome dockerized Data Science toolstack (incl. Jupyster, Superset, Postgres, Minio, AirFlow & API Star)
File Explorer
Download Latest Version (.zip)- airflow_container.env
- airflow_database.env
- jupyter.env
- minio.env
- postgres.env
- shared_database.env
- superset_container.env
- superset_database.env
- app.py
- custom_routes.py
- Dockerfile
- Dockerfile
- 00_shared_create_user.sh
- 01_shared_create_db.sh
- 02_superset_create_user.sh
- 03_superset_create_db.sh
- 04_airflow_create_user.sh
- 05_airflow_create_db.sh
- example_dag.py
- example-minio-connection.ipynb
- example-postgres-connection.ipynb
- requirements.txt
- docker-compose.yml
- README.md
- architecture.png
- cookiecutter.json
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/jgoerner/data-science-stack-cookiecutter
Downloads the entire project code from GitHub to your computer.
cd data-science-stack-cookiecutter
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f {{cookiecutter.project_name}}/docker-compose.yml up -d --build
Runs the command against the services defined in the compose file.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Python
EasyPrerequisites
โ ๏ธ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
pip install -r {{cookiecutter.project_name}}/shared/requirements.txt
Installs the Python libraries listed in requirements.txt (or similar).
jupyter notebook
Launches Jupyter in your browser so you can open and run the notebook (.ipynb) files.
If it runs without errors and prints output in the terminal, it worked.
// repository documentation
Was this content helpful?
(0 ratings)
