MobileSpectrum is OpenSource website showing many different contries mobile spectrum allocations.
Production: https://mobilespectrum.org
Install Docker: https://docs.docker.com/get-docker/
Clone Repository
git clone https://github.com/olkitu/Mobilespectrum.git
Use Docker and Docker Compose to set up production enviroment.
docker build -t olkitu/mobilespectrum .
The site will available on port 4000.
Requirements:
- NodeJS 14.15
- Angular CLI
- Yarn
Use yarn to build Node modules and build to production
yarn
ng build --configuration production
And copy static dist/MobileSpectrum
to webserver root directory.
We recommend use Gitpod to setup development enviroment. You can also install it to locally.
Full Documentation: https://docs.mobilespectrum.org/
Just click below to start development in Gitpod. You must register to service with your Gitlab account.
Build, install Node-modules and start dev environment. The first setup will take time because node_modules will be installed to persistent volume.
docker-compose build
docker-compose up -d
You can then modify files locally and see changes via browser http://localhost:4200
If you like to reinstall node_modules, stop Docker with -v
parameter to remove persistent volume.
docker-compose down -v
Requirements:
- NodeJS 14.15
- Angular CLI
- Yarn
Run yarn
to install Node-modules
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module
.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via Protractor.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.