imgs added
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ChangeListManager">
|
||||||
|
<list default="true" id="fd4afde1-1e8e-4d28-9403-576562526750" name="Changes" comment="">
|
||||||
|
<change beforePath="$PROJECT_DIR$/docker-compose.yml" beforeDir="false" afterPath="$PROJECT_DIR$/docker-compose.yml" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/docker/Dockerfile" beforeDir="false" afterPath="$PROJECT_DIR$/docker/Dockerfile" afterDir="false" />
|
||||||
|
<change beforePath="$PROJECT_DIR$/src/assets/css/main.css" beforeDir="false" afterPath="$PROJECT_DIR$/src/assets/css/main.css" afterDir="false" />
|
||||||
|
</list>
|
||||||
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
|
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||||
|
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||||
|
</component>
|
||||||
|
<component name="ComposerSettings">
|
||||||
|
<execution />
|
||||||
|
</component>
|
||||||
|
<component name="Git.Settings">
|
||||||
|
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
||||||
|
</component>
|
||||||
|
<component name="MarkdownSettingsMigration">
|
||||||
|
<option name="stateVersion" value="1" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectId" id="25iP36UZglWNAHyrv5jJoQeK0xF" />
|
||||||
|
<component name="ProjectViewState">
|
||||||
|
<option name="hideEmptyMiddlePackages" value="true" />
|
||||||
|
<option name="showLibraryContents" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="PropertiesComponent">
|
||||||
|
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
|
||||||
|
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
||||||
|
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||||
|
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
|
||||||
|
<property name="node.js.detected.package.eslint" value="true" />
|
||||||
|
<property name="node.js.selected.package.eslint" value="(autodetect)" />
|
||||||
|
<property name="nodejs_package_manager_path" value="npm" />
|
||||||
|
<property name="vue.rearranger.settings.migration" value="true" />
|
||||||
|
</component>
|
||||||
|
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||||
|
<component name="TaskManager">
|
||||||
|
<task active="true" id="Default" summary="Default task">
|
||||||
|
<changelist id="fd4afde1-1e8e-4d28-9403-576562526750" name="Changes" comment="" />
|
||||||
|
<created>1646006732965</created>
|
||||||
|
<option name="number" value="Default" />
|
||||||
|
<option name="presentableId" value="Default" />
|
||||||
|
<updated>1646006732965</updated>
|
||||||
|
<workItem from="1646006734585" duration="420000" />
|
||||||
|
<workItem from="1646165240272" duration="1771000" />
|
||||||
|
<workItem from="1646172842260" duration="10502000" />
|
||||||
|
<workItem from="1646557970520" duration="2123000" />
|
||||||
|
<workItem from="1648155462374" duration="2218000" />
|
||||||
|
<workItem from="1649081744625" duration="1110000" />
|
||||||
|
<workItem from="1649187179749" duration="1116000" />
|
||||||
|
<workItem from="1649967735144" duration="280000" />
|
||||||
|
<workItem from="1650593705732" duration="1075000" />
|
||||||
|
</task>
|
||||||
|
<servers />
|
||||||
|
</component>
|
||||||
|
<component name="TypeScriptGeneratedFilesManager">
|
||||||
|
<option name="version" value="3" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -5,7 +5,7 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: docker/Dockerfile
|
dockerfile: docker/Dockerfile
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
image: registry.chiefsoft.net/wrenchboardmainsite_wrenchboard-www:latest
|
#image: registry.chiefsoft.net/wrenchboardmainsite_wrenchboard-www:latest
|
||||||
ports:
|
ports:
|
||||||
- 9081:3000
|
- 9081:3000
|
||||||
extra_hosts:
|
extra_hosts:
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
FROM node:12-alpine
|
# pull official base image
|
||||||
|
FROM node:13.12.0-alpine
|
||||||
COPY docker-entrypoint.sh /usr/local/bin/
|
|
||||||
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
||||||
|
|
||||||
# set working directory
|
# set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@@ -19,9 +17,11 @@ RUN npm install -g serve
|
|||||||
# add app
|
# add app
|
||||||
COPY . ./
|
COPY . ./
|
||||||
|
|
||||||
|
# start app
|
||||||
|
CMD ["npm", "start"]
|
||||||
|
|
||||||
# build app
|
# build app
|
||||||
RUN npm run-script build
|
#RUN npm run-script build
|
||||||
|
|
||||||
# start app
|
# start app
|
||||||
CMD ["serve", "-s", "build"]
|
#CMD ["serve", "-s", "build"]
|
||||||
|
|
||||||
|
After Width: | Height: | Size: 749 KiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 149 KiB |
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 2.9 MiB |
|
After Width: | Height: | Size: 50 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 8.0 MiB |
@@ -27,7 +27,6 @@ function ServicesHomeOne({ className }) {
|
|||||||
>
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<img src={IconOne} alt="" />
|
<img src={IconOne} alt="" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="appie-title">Free Account</h4>
|
<h4 className="appie-title">Free Account</h4>
|
||||||
<p>Join WrenchBoard.<span>Create an account for Income.</span></p>
|
<p>Join WrenchBoard.<span>Create an account for Income.</span></p>
|
||||||
@@ -41,7 +40,6 @@ function ServicesHomeOne({ className }) {
|
|||||||
>
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<img src={IconTwo} alt="" />
|
<img src={IconTwo} alt="" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="appie-title">Find Task </h4>
|
<h4 className="appie-title">Find Task </h4>
|
||||||
<p>Build a Self-Portfolio <span>with sole purpose to Cash-Out.</span></p>
|
<p>Build a Self-Portfolio <span>with sole purpose to Cash-Out.</span></p>
|
||||||
@@ -55,7 +53,6 @@ function ServicesHomeOne({ className }) {
|
|||||||
>
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<img src={IconThree} alt="" />
|
<img src={IconThree} alt="" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="appie-title">Complete</h4>
|
<h4 className="appie-title">Complete</h4>
|
||||||
<p>Organize and Manage <span>your teams efficiently. </span> Manage your workgroup.</p>
|
<p>Organize and Manage <span>your teams efficiently. </span> Manage your workgroup.</p>
|
||||||
@@ -69,7 +66,6 @@ function ServicesHomeOne({ className }) {
|
|||||||
>
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<img src={IconFour} alt="" />
|
<img src={IconFour} alt="" />
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<h4 className="appie-title">Get Paid</h4>
|
<h4 className="appie-title">Get Paid</h4>
|
||||||
<p>Start <span>Boosting your Income </span> By earning Cash for your Time and Skills.</p>
|
<p>Start <span>Boosting your Income </span> By earning Cash for your Time and Skills.</p>
|
||||||
|
|||||||