Remote Access - SeoulSKY/safe-zone-system GitHub Wiki
Safezone Mac
To access safezone-mac, you must first be logged in to tuxworld.
Then, ssh [email protected]
Password: liquid*street4
Shell Aliases
Main Project/Docker Compose
| Description | Alias | Command |
|---|---|---|
| cd to project root | proj |
cd $PROJECT |
| build | build |
cd $PROJECT && docker-compose build |
| build and run | buildup |
cd $PROJECT && docker-compose up --build |
| build and run in detatched mode | buildupd |
cd $PROJECT && docker-compose up --build -d |
| run | up |
cd $PROJECT && docker-compose up |
| run in detatched mode | upd |
cd $PROJECT && docker-compose up -d |
| teardown | down |
cd $PROJECT && docker-compose down |
React Native Project/Emulators
| Description | Alias | Command |
|---|---|---|
| cd to react native project | react |
cd $REACT |
| cd and start expo server | expo |
cd $REACT && npm start |
| boot iPhone image and start Simulator app (iOS) | bootsim |
xcrun simctl boot BE648132-AF5B-4840-8622-379C189B311B && open -a Simulator |
| quit Simulator app | quitsim |
osascript -e 'quit app \"Simulator\"' |
| start Emulator (Android) | bootemu |
emulator -no-snapshot-save -avd Pixel5API29 |