Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rayzhuca/falconx-robotics-website

Website for FalconX Robotics.
https://github.com/rayzhuca/falconx-robotics-website

6662 falconx falconx-robotics spring spring-boot website

Last synced: about 1 month ago
JSON representation

Website for FalconX Robotics.

Awesome Lists containing this project

README

        

## About

This is the old repository for the upcoming website of FalconX Robotics. This project is currently not in development.

[Here](https://falconxrobotics.herokuapp.com/) is the link (inactive).

## Cautions
Remember to never leak Google Sheets authentication files onto git.
If you do, remember to immediately:
- Make the repo private
- Undo the changes
- Refresh the tokens

### How to push to Heroku without leaking Credentials
Run the following commands on git bash.
```
git branch -D product
git branch product master
git checkout product
```
Then, remove `secrets/` in [.gitignore](.gitignore) and run the following.
```
git commit -a -m "Added Credentials for Heroku."
git push heroku product:master -f
```
Lastly, to return back to the master branch:
```
git checkout master
```