forked from neo4j-documentation/developer-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dirs.sh
executable file
·71 lines (63 loc) · 1.72 KB
/
dirs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
function dir_and_adoc {
mkdir -p $1
if [ ! -f "$1/$1.adoc" ]; then
sed -e "s/Guide Title/$1/" ../guide_template.adoc > $1/$1.adoc
else
echo "$1/$1.adoc already exists"
fi
}
mkdir -p neo4j-in-production
cd neo4j-in-production
dir_and_adoc guide-cloud-deployment
dir_and_adoc guide-sizing-and-hardware-calculator
dir_and_adoc guide-performance-tuning
dir_and_adoc guide-clustering-neo4j
dir_and_adoc guide-ha
cd ..
exit
mkdir -p what-is-neo4j
cd what-is-neo4j
dir_and_adoc graph-database
dir_and_adoc property-graph
dir_and_adoc graph-db-vs-rdbms
dir_and_adoc graph-db-vs-nosql
cd ..
mkdir -p cypher-query-language
cd cypher-query-language
dir_and_adoc guide-cypher-basics
dir_and_adoc guide-build-a-recommendation-engine
dir_and_adoc cypher-ref-card
cd ..
mkdir -p working-with-data
cd working-with-data
dir_and_adoc guide-create-your-dataset
dir_and_adoc guide-importing-data-and-etl
dir_and_adoc guide-neo4j-browser
dir_and_adoc guide-neo4j-browser-data-visualization
dir_and_adoc gists-and-examples
cd ..
mkdir -p build-a-graph-data-model
cd build-a-graph-data-model
dir_and_adoc guide-intro-to-graph-modeling
cd ..
mkdir -p choosing-your-language
cd choosing-your-language
dir_and_adoc guide-neo4j-with-java
dir_and_adoc guide-neo4j-with-javascript
dir_and_adoc guide-neo4j-with-python
dir_and_adoc guide-neo4j-with-dotnet
dir_and_adoc guide-neo4j-with-php
dir_and_adoc guide-neo4j-with-r
dir_and_adoc guide-neo4j-with-clojure
dir_and_adoc guide-neo4j-with-ruby
dir_and_adoc guide-neo4j-with-go
dir_and_adoc guide-neo4j-with-scala
dir_and_adoc guide-neo4j-with-groovy
cd ..
mkdir -p neo4j-ecosystem
cd neo4j-ecosystem
dir_and_adoc documentation
dir_and_adoc language-drivers
dir_and_adoc libraries
dir_and_adoc visualization-tools
cd ..