Originally this project was a commercial VPN service for Russian segment of Internet. Several years later when I got tired of endless support, I've decided to close my business and release the project to the opensource.
You can find some information about it at https://news.ycombinator.com/item?id=9791633.
All documentation is located in this repository: https://github.com/Mehonoshin/smartvpn
VPN node configuration is located in the following repo.
- Clone repo
git clone git@github.com:Mehonoshin/smartvpn-billing.git
cd smartvpn-billing
cp config/database.yml.sample config/database.yml
and enter the username and password for access to your database.cp .env.sample .env
- The file
.env
contains all the env variables used in the application. bundle install
rake db:setup
rails server
- Clone repo
git clone git@github.com:Mehonoshin/smartvpn-billing.git
cd smartvpn-billing
docker-compose -f docker-compose.development.yml up
- Copy your
SECRET_TOKEN
to.env
- Go to http://lvh.me:3000
How to run usual RoR command into docker
docker-compose -f docker-compose.development.yml up
docker-compose exec app bash
- connect to running container as named appRAILS_ENV=test ./bin/rake db:setup
- setup test database./bin/rails console
- run rails consoleRAILS_ENV=test bundle exec rspec spec
- start rspec tests
How it works :) https://www.youtube.com/watch?v=VFRKPO5LHDg
The docker image is built automatically on every merge to master. You can always pull the latest version of the image from Docker Hub.
docker pull mexx/smartvpn-billing
For more information about the builds visit docker hub page mexx/smartvpn-billing