Skip to content
Snippets Groups Projects
Commit e6a5b44c authored by Quentin Bramas's avatar Quentin Bramas
Browse files

remove db from the repo and generate it with CI

parent b0938f5f
Branches
Tags
No related merge requests found
Pipeline #94797 passed with stage
in 2 minutes and 53 seconds
......@@ -26,3 +26,17 @@ build-docker-master:
- docker run caprover/cli-caprover:2.2.3 caprover deploy --caproverUrl $CAPROVER_URL --appToken $CAPROVER_APP_TOKEN --caproverApp $CAPROVER_APP --imageName $CONTAINER_FULL_IMAGE_NAME_WITH_TAG
only:
- master
database:
rules:
- if: $CI_COMMIT_TAG =~ /^db/
#hanges:
# - db.version
image: python:3.11
script:
- cd db_generator
- pip install -r requirements.txt
- python3 generator.py raw-parse dblp.xml dblp_raw.bin
- python3 generator.py create-graph dblp_raw.bin graph.bin
- ls -al
File deleted
This diff is collapsed.
beautifulsoup4==4.11.1
certifi==2022.9.24
charset-normalizer==2.1.1
click==8.1.3
idna==3.4
lxml==4.9.1
mosspy==1.0.9
PyYAML==5.1
requests==2.28.1
soupsieve==2.3.2.post1
termcolor==2.1.0
typer==0.7.0
Unidecode==1.3.6
urllib3==1.26.12
......@@ -8,3 +8,6 @@ import {
export default createHandler(
renderAsync((event) => <StartServer event={event} />)
);
const test = "test";
console.log(test);
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment