Skip to content

Commit

Permalink
Merge pull request #13 from representacion/feat/improve-repo-organiza…
Browse files Browse the repository at this point in the history
…tion

Mejorar la organización del repositorio. Se separan datos, código de python y código frontend
  • Loading branch information
pablorm296 authored Sep 12, 2024
2 parents f23d090 + 8eee01f commit 3c41ac6
Show file tree
Hide file tree
Showing 976 changed files with 321 additions and 311 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,15 @@ jobs:
restore-keys: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
- name: Install dependencies
run: bun install
working-directory: ./frontend
- name: Build
run: bun run build
working-directory: ./frontend
- name: Deploy
uses: actions/upload-pages-artifact@v3
working-directory: ./frontend
with:
path: ./out
path: ./frontend/out
deploy:
environment:
name: github-pages
Expand Down
15 changes: 9 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Frontend files ==============================================================

# dependencies
/node_modules
/.pnp
node_modules
.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/
.next/
out/

# production
/build
frontend/build

# misc
.DS_Store
Expand All @@ -35,6 +37,7 @@ yarn-error.log*
*.tsbuildinfo
next-env.d.ts

# Python
# Python files ===============================================================

.ipynb_checkpoints/
env/
301 changes: 301 additions & 0 deletions data/districts/distdata.csv

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes
File renamed without changes
Loading

0 comments on commit 3c41ac6

Please sign in to comment.