Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
237 changes: 119 additions & 118 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,118 +1,119 @@
# Python compiled files
*.pyc
*.pyo
__pycache__/
*.pyd

# Virtual environments
venv/
.env/
.envrc
.Python
*.env

# Django stuff
db.sqlite3
*.sqlite3
media/
staticfiles/

# Logs
*.log
*.pot
*.py[cod]
*.pyd
*.sqlite3-shm
*.sqlite3-wal
*.cover
*.log

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Django stuff:
*.pot
*.py[cod]
*.sqlite3
/media
/static
/staticfiles

# Coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Pytest
.cache/
.pytest_cache/

# Jupyter Notebook
.ipynb_checkpoints

# IDE files
.idea/
.vscode/
*.swp
*~

# macOS system files
.DS_Store

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db

# pyenv
.python-version

# Celery
celerybeat-schedule

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Django migrations
*.log
*.pot
migrations/

# Local.env
*.env
# Python compiled files
*.pyc
*.pyo
__pycache__/
*.pyd

# Virtual environments
venv/
.venv/
.env/
.envrc
.Python
*.env

# Django stuff
db.sqlite3
*.sqlite3
media/
staticfiles/

# Logs
*.log
*.pot
*.py[cod]
*.pyd
*.sqlite3-shm
*.sqlite3-wal
*.cover
*.log

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Django stuff:
*.pot
*.py[cod]
*.sqlite3
/media
/static
/staticfiles

# Coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Pytest
.cache/
.pytest_cache/

# Jupyter Notebook
.ipynb_checkpoints

# IDE files
.idea/
.vscode/
*.swp
*~

# macOS system files
.DS_Store

# Windows thumbnail cache files
Thumbs.db
ehthumbs.db

# pyenv
.python-version

# Celery
celerybeat-schedule

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Django migrations
*.log
*.pot
migrations/

# Local.env
*.env
42 changes: 21 additions & 21 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
MIT License

Copyright (c) 2024 Apoorva Agrawal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
MIT License
Copyright (c) 2024 Apoorva Agrawal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 1 addition & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
This is a repository for the ContainerOps project which aims to make a Universal Continuous Deployment Tool with Automated Containerization


Setup:
- navigate into the buildServer directory.
- activate the virtual environment (named .venv)
- Install the requirements using: pip install -r requirements.txt
- start the server: python manage.py runserver
This is a repository for the ContainerOps project which aims to make a Universal Continuous Deployment Tool with Automated Containerization
Loading