Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tractorcow/silverstripe-vagrant-win
https://github.com/tractorcow/silverstripe-vagrant-win
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/tractorcow/silverstripe-vagrant-win
- Owner: tractorcow
- Created: 2018-01-09T00:05:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-10T22:07:36.000Z (almost 7 years ago)
- Last Synced: 2024-10-15T16:10:56.689Z (3 months ago)
- Language: PowerShell
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# SilverStripe vagrant image for Windows Server 2016
## Getting started
```
# Setup
git clone https://github.com/tractorcow/silverstripe-vagrant-win.git ./myvagrant
cd myvagrant/Sites
composer create-project silverstripe/installer ./ss40test ^4 --prefer-source
cd ..# Start vagrant
vagrant up
vagrant rdp
```# Browsing your site
You can access your site at `http://127.0.0.1:9090/Sites/ss40test/`
# Database
No MySQL is configured for this image; We suggest that you use sqlite3 instead (or set this up yourself)
# RDP
Install https://itunes.apple.com/us/app/microsoft-remote-desktop-8-0/id715768417?mt=12
Then access with `vagrant rdp`
User credentials are:
- User: vagrant
- Password: vagrant# todo
- chocolately doesn't actually work for some reason, thus urlrewrite step fails. You will
need to install and configure this manually.
- If you don't configure urlrewrite, then index.php / install.php will work but no other urls
- The symlinked `Sites` folder actually isn't writable by IIS, which breaks installer as well
as `assets` dir. You should probably install your project fresh in an adjacent subdirectory
instead of the symlinked one.
- We probably should setup mysql, maybe once we get chocolately working properly. Just use
sqlite for now.