Commit
·
6872183
0
Parent(s):
feat: init project
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- .idea/.gitignore +8 -0
- .idea/material_theme_project_new.xml +12 -0
- .idea/modules.xml +8 -0
- .idea/sentiment-analysis.iml +12 -0
- .idea/vcs.xml +6 -0
- Cargo.lock +11 -0
- Cargo.toml +5 -0
.gitattributes
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
sam-artifacts/model.mpk filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
target
|
.idea/.gitignore
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Default ignored files
|
2 |
+
/shelf/
|
3 |
+
/workspace.xml
|
4 |
+
# Editor-based HTTP Client requests
|
5 |
+
/httpRequests/
|
6 |
+
# Datasource local storage ignored files
|
7 |
+
/dataSources/
|
8 |
+
/dataSources.local.xml
|
.idea/material_theme_project_new.xml
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="MaterialThemeProjectNewConfig">
|
4 |
+
<option name="metadata">
|
5 |
+
<MTProjectMetadataState>
|
6 |
+
<option name="migrated" value="true" />
|
7 |
+
<option name="pristineConfig" value="false" />
|
8 |
+
<option name="userId" value="-73d31f00:1934b109662:-7ffe" />
|
9 |
+
</MTProjectMetadataState>
|
10 |
+
</option>
|
11 |
+
</component>
|
12 |
+
</project>
|
.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="ProjectModuleManager">
|
4 |
+
<modules>
|
5 |
+
<module fileurl="file://$PROJECT_DIR$/.idea/sentiment-analysis.iml" filepath="$PROJECT_DIR$/.idea/sentiment-analysis.iml" />
|
6 |
+
</modules>
|
7 |
+
</component>
|
8 |
+
</project>
|
.idea/sentiment-analysis.iml
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<module type="EMPTY_MODULE" version="4">
|
3 |
+
<component name="NewModuleRootManager">
|
4 |
+
<content url="file://$MODULE_DIR$">
|
5 |
+
<sourceFolder url="file://$MODULE_DIR$/server/src" isTestSource="false" />
|
6 |
+
<sourceFolder url="file://$MODULE_DIR$/trainer/src" isTestSource="false" />
|
7 |
+
<excludeFolder url="file://$MODULE_DIR$/target" />
|
8 |
+
</content>
|
9 |
+
<orderEntry type="inheritedJdk" />
|
10 |
+
<orderEntry type="sourceFolder" forTests="false" />
|
11 |
+
</component>
|
12 |
+
</module>
|
.idea/vcs.xml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<project version="4">
|
3 |
+
<component name="VcsDirectoryMappings">
|
4 |
+
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
5 |
+
</component>
|
6 |
+
</project>
|
Cargo.lock
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file is automatically @generated by Cargo.
|
2 |
+
# It is not intended for manual editing.
|
3 |
+
version = 4
|
4 |
+
|
5 |
+
[[package]]
|
6 |
+
name = "server"
|
7 |
+
version = "0.0.0"
|
8 |
+
|
9 |
+
[[package]]
|
10 |
+
name = "trainer"
|
11 |
+
version = "0.0.0"
|
Cargo.toml
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[workspace]
|
2 |
+
members = [
|
3 |
+
"trainer",
|
4 |
+
"server",
|
5 |
+
]
|