-
Notifications
You must be signed in to change notification settings - Fork 11
Getting Started
-
Node.js® – a JavaScript runtime built on Chrome's V8 JavaScript engine. (version 16.13.0)
-
Nodemon – monitor for any changes in your source and automatically restart your server
Note for Linux users: if your home directory is mounted from a network drive, using the Node Version Manager for installing Node.js highly recommended.
Unless you're forking into the same organization account, you can just use GitHub's forking functionality. Instructions for forking into the same organization account are below.
In GitHub it's not possible to fork an organization's repository to that same organization. If a new repository needs to be created using the SemanticComputing organization account, here is an alternative workflow for forking:
-
Clone this repository:
git clone [email protected]:SemanticComputing/sampo-ui.git
-
Set up a new GitHub repository. Do not initialize it with anything. It needs to be an empty repository. You can name it how you like and you can rename your local folder to match that.
-
Copy the url of your new repository.
-
With terminal go to the folder with the clone of this repository (sampo-ui).
-
Change remote origin from sampo-ui to your new repository:
git remote set-url origin [your new github repo here]
-
Check that the origin changed to your new repository:
git remote -v
-
Push your local clone of sampo-ui to your new repository:
git push
-
Set sampo-ui as the upstream of your new repository:
git remote add upstream [email protected]:SemanticComputing/sampo-ui.git
-
When new commits appear on the sampo-ui repository you can fetch them to your new repository. The example fetches only master branch:
git fetch upstream master
-
Go to the branch of your new repository where you want to merge the changes in upstream. Merge, solve conflicts and enjoy:
git merge upstream/master
Install the dependencies specified in package.json
(this command needs to be run only once,
as long as you don't modify the dependencies):
npm install
Run client and server concurrently:
npm run dev
These example commands can be used to deploy the server at http://localhost:3006/ in production mode. Production mode means in this case that the server listens for API requests at URLs beginning with http://localhost:3006/api/v1/... and additionally serves the client (React app) at http://localhost:3006/. The API docs can be found at http://localhost:3006/api-docs/.
Note that in development mode Webpack is used for serving the client, and the server is used only for handling API requests.
The build argument API_URL must be provided.
docker build --build-arg API_URL=http://localhost:3006/api/v1 -t sampo-web-app-image .
docker run -d -p 3006:3001 --name sampo-web-app sampo-web-app-image
docker run -d -p 3006:3001 -e SPARQL_ENDPOINT_BASIC_AUTH=your_password --name sampo-web-app sampo-web-app-image
docker build --build-arg API_URL=http://localhost:3006/api/v1 -t sampo-web-app-image .
docker stop sampo-web-app
docker rm sampo-web-app
docker run -d -p 3006:3001 --name sampo-web-app sampo-web-app-image