https://github.com/mildronize/r2als-app
An app of R2ALS project
https://github.com/mildronize/r2als-app
Last synced: 4 months ago
JSON representation
An app of R2ALS project
- Host: GitHub
- URL: https://github.com/mildronize/r2als-app
- Owner: mildronize
- Created: 2015-02-03T08:32:51.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-08-12T13:24:04.000Z (almost 8 years ago)
- Last Synced: 2025-08-01T10:55:28.025Z (10 months ago)
- Language: HTML
- Size: 280 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
Awesome Lists containing this project
README
# R2ALS-app
An application of R2ALS project
## This project is deprecated
> **No longer maintenance**
This project uses Polymer 0.53 as a core application, which is no longer supported by Google
This project can't run on Chrome 45 due to lack of web technology
The last capture

## Changelog
- Move from `bower` to `yarn`
- Replace many packages with the other place repositories (using [googlearchive](https://github.com/googlearchive))
# Briefly Installation
- Prerequistie
nodejs
```
npm install -g yarn
yarn install
```
# Full Installation Guide
Web application Installation can install on normally web hosting or same machine. There are many software to perform as web server such as Apache, Nginx, Xampp, nodejs and python. This instruction describes install web application via python.
1. Prepare server machine for the experiment by using Debian Jessie.
2. Enter the terminal.
3. Install prerequisite packages for this project. If all of those packages have installed, you can skip this step.
sudo aptitude install git python3 python3-pip nodejs
4. Test node command using command below. The result must get version of nodejs.
```
node --version
```
If the result of the command shows that “command not found: node”. Using below command to solve the problem.
```
ln -s /usr/bin/nodejs /usr/bin/node
```
5. Install yarn from npm command
```
sudo npm install –g yarn
```
6. Access the target directory
```
mkdir ~/app
cd ~/app
```
7. Place the source code in the target directory. Use the git command to download lastest version source code from github.
```
git clone https://github.com/mildronize/R2ALS-app.git
```
8. Access the directory from step 7.
```
cd R2ALS-app
```
9. Setup prerequisite packages for web using this command.
```
yarn install
```
10. Run the server.
```
python3 –m http.server 80
```
To access the web application via the browser using URL below
```
http://your_domain_name/
```
In case of development using below URL
```
http://localhost/
```