Skip to content

Instantly share code, notes, and snippets.

View 10thfloor's full-sized avatar
💫

Mackenzie 10thfloor

💫
View GitHub Profile
@Plopix
Plopix / README.md
Last active June 3, 2024 21:15
Remix Migration Scripts

Remix Run - Route V2 Migration Script

Following the rules defined here: https://remix.run/docs/en/main/pages/v2

Run the following in the project directory:

curl -fsSL https://gist.github.com/Plopix/58fc3f3be202d9915c466e71077d36a2/raw/migrate-to-v2-routing.bash | bash -s I_ROUTES_FOLDER O_ROUTES_FOLDER
@dweldon
dweldon / meteor-nginx
Last active January 22, 2024 06:53
This is an example of how to configure nginx to serve a meteor app.
server {
listen [::]:80;
listen 80;
server_name app.example.com;
return 301 https://$server_name$request_uri;
}
server {