Skip to content

Commit e9ad572

Browse files
Merge pull request #113 from eclipsevortex/release/3.0.0
Scaffolding improvment (#112)
2 parents b909a6c + f66a563 commit e9ad572

233 files changed

Lines changed: 10851 additions & 3133 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 0 additions & 168 deletions
This file was deleted.

.dockerignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Python cache and compiled files
2+
__pycache__/
3+
*.py[cod]
4+
*.pyo
5+
6+
# Virtual environments
7+
venv/
8+
.venv/
9+
env/
10+
.env/
11+
12+
# Distribution / packaging
13+
build/
14+
dist/
15+
*.egg-info/
16+
17+
# Logs and temporary files
18+
*.log
19+
*.tmp
20+
*.swp
21+
22+
# Editor / IDE files
23+
.vscode/
24+
.idea/
25+
*.sublime-project
26+
*.sublime-workspace
27+
28+
# OS-specific files
29+
.DS_Store
30+
Thumbs.db
31+
32+
# Test and coverage
33+
.coverage
34+
coverage.xml
35+
htmlcov/
36+
.tox/
37+
.pytest_cache/
38+
tests/__pycache__/
39+
40+
# Git and other version control
41+
.git/
42+
.gitignore
43+
44+
# Docker and CI/CD
45+
.dockerignore
46+
.docker/
47+
.envrc
48+
*.sh
49+
*.bak

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,5 +172,9 @@ ips_blocked.json
172172
firewall-events.json
173173
.DS_Store
174174
DS_Store
175-
.secrets
176-
.build
175+
*secrets
176+
*.txt
177+
ga-*.json
178+
.build
179+
redis.conf
180+
pyproject.toml

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Opentensor
3+
Copyright (c) 2024 Eclipse Vortex
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include VERSION

0 commit comments

Comments
 (0)